22 lines
596 B
TOML
22 lines
596 B
TOML
[package]
|
|
name = "rust-dms"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = """
|
|
A tiny utility to execute certain actions on upon a disconnection of any given USB device.
|
|
"""
|
|
authors = ["nm17"]
|
|
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"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.32", features = ["derive"] }
|
|
clap-verbosity-flag = "3.0.2"
|
|
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"
|