-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 912 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 912 Bytes
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
[package]
name = "rust-vjoy-manager"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
vku = "0.2.0"
vjoy = "0.6.0"
env_logger = {version = "0.10.0", features = ["color", "humantime"]}
log = { version = "0.4.17", features = ["max_level_trace", "release_max_level_info"] }
winit = "0.28.3"
egui = "0.21.0"
egui_extras = "0.21.0"
egui_file = "0.8.2"
egui-winit = "0.21.1"
thiserror = "1.0.40"
ringbuffer = "0.13.0"
raw-window-handle = "0.5.2"
nalgebra-glm = "0.18.0"
image = "0.24.6"
sdl2 = { version = "0.35.2", features = ["bundled", "static-link"]}
profiling = { version = "1.0.7", features = [] }
serde = "1.0.160"
toml = "0.7.3"
strum = { version = "0.24", features = ["derive"] }
indexmap = "1.9.3"
[features]
profile = ["profiling/profile-with-tracy"]
[profile.dist]
inherits = "release"
strip = "symbols"