fix: dumb mistake
This commit is contained in:
parent
37f645bea0
commit
6f9e7c21c8
3 changed files with 167 additions and 5 deletions
12
Cargo.toml
12
Cargo.toml
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rust-dms"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
edition = "2024"
|
||||
description = """
|
||||
A tiny utility to execute certain actions on upon a disconnection of any given USB device.
|
||||
|
@ -10,13 +10,23 @@ license = "MIT OR Apache-2.0"
|
|||
readme = "README.md"
|
||||
repository = "https://git.dc09.ru/nm17/rust-dms"
|
||||
homepage = "https://git.dc09.ru/nm17/rust-dms"
|
||||
keywords = ["dead-man-switch", "security", "usb", "privacy", "cli"]
|
||||
categories = ["command-line-utilities", "command-line-interface"]
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.5.32", features = ["derive"] }
|
||||
clap-verbosity-flag = "3.0.2"
|
||||
env_logger = "0.11.7"
|
||||
hex = { version = "0.4.3" }
|
||||
libc = { version = "0.2.171", default-features = false }
|
||||
log = "0.4.26"
|
||||
nusb = "0.1.13"
|
||||
signal-hook = "0.3.17"
|
||||
snafu = "0.8.5"
|
||||
|
||||
[profile.release]
|
||||
codegen-units = 1
|
||||
opt-level = "z"
|
||||
strip = "symbols"
|
||||
lto = true
|
||||
panic = "abort"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue