28 lines
696 B
TOML
28 lines
696 B
TOML
|
[package]
|
||
|
name = "chuniio-yubideck"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[lib]
|
||
|
crate-type = ["cdylib"]
|
||
|
|
||
|
[profile.release]
|
||
|
strip = true # Automatically strip symbols from the binary.
|
||
|
opt-level = "z" # Optimize for size.
|
||
|
lto = true
|
||
|
codegen-units = 1
|
||
|
panic = "abort"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
[features]
|
||
|
chusan = []
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow = "1.0.76"
|
||
|
env_logger = { version = "0.10.1", default-features = false }
|
||
|
lazy_static = "1.4.0"
|
||
|
log = "0.4.20"
|
||
|
rusb = "0.9.3"
|
||
|
shared_memory = { path = "vendor/shared_memory" }
|
||
|
winapi = { version = "0.3.9", features = ["minwindef", "winnt", "winerror", "debugapi", "winbase", "winuser"] }
|