clio/Cargo.toml
Jeremy Wall b3680173a7 fix: Some signal handling woes
tokio won't allow me to trap sigkill
2024-06-04 17:34:12 -04:00

14 lines
471 B
TOML

[package]
name = "clio"
version = "0.1.0"
edition = "2021"
description = "A small log redirection utility"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
clap = { version = "4.5.4", features = ["derive"] }
nix = { version = "0.29.0", features = ["signal", "process"] }
tokio = { version = "1.38.0", features = ["process", "signal", "rt", "rt-multi-thread", "macros", "io-util", "fs"] }