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-11-23 19:14:22 +01:00
anyhow = "1.0.93"
clap = { version = "4.5.21", features = [
2024-10-21 23:02:58 +02:00
"derive",
"deprecated",
"wrap_help",
"string",
] }
2024-11-23 19:14:22 +01:00
tokio = { version = "1.41.1", features = ["full"] }
2024-10-21 23:02:58 +02:00
tracing = "0.1.40"
tracing-chrome = "0.7.2"
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
"std",
"ansi",
"env-filter",
"fmt",
] }