timers/Cargo.toml

20 lines
480 B
TOML
Raw Normal View History

2023-06-20 20:12:02 +02:00
[package]
name = "timers"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
clap = { version = "4.3.4", features = ["derive"] }
2023-08-25 18:18:45 +02:00
clap_complete_command = "0.5.1"
humantime = "2.1.0"
libc = "0.2.147"
2023-07-29 10:41:56 +02:00
notify-rust = "4.8.0"
2023-06-20 20:12:02 +02:00
serde = { version = "1.0.164", features = ["derive"] }
serde_cbor = "0.11.2"
serde_json = "1.0.105"
signal-hook = "0.3.17"
2023-07-28 19:52:23 +02:00
thiserror = "1.0.44"