-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (59 loc) · 1.42 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[workspace]
members = [
".",
"openvr",
"license-gen"
]
[package]
name = "clekey-ovr-rs"
version = "0.4.0"
edition = "2021"
repository = "https://github.com/anatawa12/clekeyOVR.git"
license = "GPL-3.0-only"
default-run = "clekey_ovr"
[[bin]]
name = "clekey_ovr"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
simple_logger = "4.0.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
log = "0.4.17"
once_cell = "1.15.0"
skia-safe = { version = "0.68.0", features = ["gl", "textlayout"] }
gl = "0.14.0"
cfg-if = "1.0.0"
openvr = { path = "openvr", optional = true }
glam = { version = "0.24.2", features = ["serde"] }
flate2 = "1"
tar = "0.4"
reqwest = { version = "0.11.13", features = ["blocking", "deflate", "gzip", "json"] }
percent-encoding = "2.2.0"
bytemuck = "1.13.1"
[build-dependencies]
flate2 = "1"
tar = "0.4"
sha2 = "0.10"
hex = "0.4"
license-gen = { path = "license-gen" }
[target."cfg(windows)".dependencies.winsafe]
version = "0.0.18"
features = [
"user",
"kernel",
]
[target."cfg(windows)".dependencies.winapi]
version = "0.3.9"
features = [
"winuser",
]
[dependencies.glfw]
git = "https://github.com/bjz/glfw-rs.git"
[target."cfg(windows)".features]
default = ["openvr"]
[features]
# by build.rs,
# - debug_window is enabled in default on debug build (cfg(debug_assertions))
default = []
debug_window = []