forked from Supreeeme/xrizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (67 loc) · 1.93 KB
/
Cargo.toml
File metadata and controls
77 lines (67 loc) · 1.93 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[package]
name = "xrizer"
version = "0.4.0"
edition = "2021"
resolver = "2"
rust-version = "1.83"
license = "GPL-3.0-or-later"
description = "XR-ize your favorite OpenVR games"
repository = "https://github.com/Supreeeme/xrizer"
readme = "README.md"
[lib]
crate-type = ["cdylib"]
[features]
default = ["monado"]
tracing = ["dep:tracy-client", "openvr/tracing"]
monado = ["dep:openxr_mndx_xdev_space"]
[workspace]
members = ["openvr", "shaders", "xbuild"]
[workspace.lints.clippy]
all = "deny"
[patch.crates-io]
openxr = { git = "https://github.com/ralith/openxrs", rev = "d0afdd3" }
openxr-sys = { git = "https://github.com/ralith/openxrs", rev = "d0afdd3" }
[workspace.dependencies]
ash = "0.38.0"
openxr = { version = "0.19.0", features = ["static"] }
openxr-sys = { version = "0.11.0" }
slotmap = "1.0.7"
glam = "0.30.4"
log = "0.4.22"
tracy-client = "0.17.6"
derive_more = { version = "2.0.1", features = ["deref", "from", "try_into"] }
[lints]
workspace = true
[dependencies]
ash = { workspace = true }
env_logger = "0.11.5"
glam = { workspace = true }
log = { workspace = true }
openxr = { workspace = true }
openxr_mndx_xdev_space = { version = "0.1.1", optional = true }
openvr = { path = "openvr" }
paste = "1.0.15"
seq-macro = "0.3.5"
macros = { path = "macros" }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
slotmap = { workspace = true }
time = { version = "0.3.36", features = ["formatting", "local-offset", "macros"] }
tracy-client = { workspace = true, features = ["only-localhost", "demangle"], optional = true }
egui = "0.31.1"
egui-miniquad = "0.16"
miniquad = "0.4.8"
webbrowser = "1.0.5"
glutin_glx_sys = "0.6.0"
libc = "0.2.169"
derive_more = { workspace = true }
gl = "0.14.0"
[build-dependencies]
anyhow = "1.0.99"
shaders = { path = "shaders" }
vergen-gitcl = "1.0.8"
[dev-dependencies]
libloading = "0.8.5"
test-cdylib = "1.1.0"
fakexr = { path = "fakexr" }
macros = { path = "macros", features = ["test"]}