-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (55 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
63 lines (55 loc) · 1.3 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
[workspace]
members = [
".",
"openvr",
]
[package]
name = "clekey-ovr-rs"
version = "0.4.0"
edition = "2024"
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 = "5.0.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
log = "0.4.17"
once_cell = "1.15.0"
gl = "0.14.0"
cfg-if = "1.0.0"
openvr = { path = "openvr", optional = true }
glam = { version = "0.30.4", features = ["serde"] }
flate2 = "1"
tar = "0.4"
reqwest = { version = "0.12.22", features = ["blocking", "deflate", "gzip", "json"] }
percent-encoding = "2.2.0"
font-kit = "0.14.3"
pathfinder_geometry = "0.5.1"
pathfinder_color = "0.5.0"
harfbuzz_rs = "2.0.1"
glutin = "0.32.3"
raw-window-handle = "0.6.2"
winit = { version = "0.30.11" }
glutin-winit = "0.5.0"
[build-dependencies]
flate2 = "1"
tar = "0.4"
sha2 = "0.10"
hex = "0.4"
license-gen = { git = "https://github.com/anatawa12/license-gen.git" }
[target."cfg(windows)".dependencies.winsafe]
version = "0.0.25"
features = [
"user",
"kernel",
]
[target."cfg(windows)".features]
default = ["openvr"]
[features]
default = []
debug_window = []