-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
47 lines (44 loc) · 1.18 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "index_camera_passthrough"
description = "Camera passthrough for Valve Index on Linux"
authors = ["Yuxuan Shui <[email protected]>"]
repository = "https://github.com/yshui/index_camera_passthrough"
version = "0.1.0"
edition = "2021"
license = "MIT"
rust-version = "1.78"
[features]
default = ["openxr"]
openvr = ["dep:openvr-sys2"]
openxr = ["dep:openxr"]
[dependencies]
anyhow = { version = "1.0.45", features = ["backtrace"] }
ash = "0.37.0"
vulkano = { git = "https://github.com/vulkano-rs/vulkano" }
vulkano-shaders = { git = "https://github.com/vulkano-rs/vulkano" }
image = "0.25.1"
openvr-sys2 = { version = "0.1.3", optional = true }
ctrlc = "3.2.1"
log = "0.4.14"
env_logger = "0.11.3"
v4l = "0.14.0"
udev = "0.8.0"
thiserror = "1.0.30"
renderdoc = "0.12.1"
nalgebra = "0.32.2"
itertools = "0.12.0"
config = "0.14.0"
serde = { version = "1.0.130", features = ["derive"] }
argh = "0.1.6"
serde_json = "1.0.70"
xdg = "2.4.0"
toml = "0.8.8"
humantime-serde = "1.0.1"
bytemuck = { version = "^1.7", features = ["derive"] }
libloading = "0.8.0"
cstr = "0.2.11"
openxr = { version = "0.17.1", optional = true }
smallvec = "1.11.2"
[build-dependencies]
anyhow = "1.0.45"
shaderc = "0.8.0"