19 lines
359 B
TOML
19 lines
359 B
TOML
[package]
|
|
name = "turnstile-ctl"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
goblin = "0.9"
|
|
clap = { version = "4", features = ["derive"] }
|
|
nix = { version = "0.29", features = ["mman", "ioctl"] }
|
|
libc = "0.2"
|
|
iced-x86 = { version = "1.21", optional = true }
|
|
thiserror = "2"
|
|
|
|
[features]
|
|
default = []
|
|
disasm = ["iced-x86"]
|
|
|
|
[profile.release]
|
|
lto = true
|