-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (30 loc) · 989 Bytes
/
Cargo.toml
File metadata and controls
40 lines (30 loc) · 989 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
36
37
38
39
40
[package]
name = "shift_tool"
version = "0.4.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "shift_tool"
path = "src/main.rs"
[lib]
name = "vpc_shift_tool"
path = "src/lib.rs"
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
eframe = "0.30.0"
env_logger = "0.11.3"
fast_config = { version = "1.1.3", features = ["json5"] }
log = "0.4.21"
serde = { version = "1.0.197", features = ["derive"] }
dirs = { version = "6.0.0", features = [] }
chrono = "0.4.40"
hidapi = { version = "2.6.1", default-features = false }
[target.'cfg(target_os = "linux")'.dependencies]
hidapi = { version = "2.6.1", default-features = false, features = ["linux-shared-hidraw"] }
[target.'cfg(target_os = "windows")'.dependencies]
hidapi = { version = "2.6.1", default-features = false, features = ["windows-native"] }
[features]
logging = []
default = ["logging"]
[dev-dependencies]
mock-it = "0.9.0"