template-nix-rust/Cargo.toml

23 lines
426 B
TOML
Raw Normal View History

2024-10-21 23:02:58 +02:00
[package]
name = "my-project"
version = "0.0.1"
edition = "2021"
[dependencies]
2024-10-22 10:00:58 +02:00
anyhow = "1.0.90"
clap = { version = "4.5.20", features = [
2024-10-21 23:02:58 +02:00
"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",
] }