template-nix-rust/Cargo.toml

22 lines
426 B
TOML

[package]
name = "my-project"
version = "0.0.1"
edition = "2021"
[dependencies]
anyhow = "1.0.90"
clap = { version = "4.5.20", features = [
"derive",
"deprecated",
"wrap_help",
"string",
] }
tokio = { version = "1.40.0", features = ["full"] }
tracing = "0.1.40"
tracing-chrome = "0.7.2"
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
"std",
"ansi",
"env-filter",
"fmt",
] }