This commit is contained in:
2025-01-29 16:29:56 -05:00
parent 464830469e
commit f538387025
6 changed files with 5634 additions and 0 deletions

22
Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[package]
name = "shift_tool"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[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"] }
hidapi = "2.6.1"
log = "0.4.21"
serde = { version = "1.0.197", features = ["derive"] }
dirs = { version = "6.0.0", features = [] }
[features]
logging = []
default = ["logging"]