dtmt/Cargo.toml

21 lines
649 B
TOML

[package]
name = "dtmt"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.0.15", features = ["color", "std", "cargo", "unicode"] }
color-eyre = "0.6.2"
futures-util = "0.3.24"
glob = "0.3.0"
pin-project-lite = "0.2.9"
tokio = { version = "1.21.2", features = ["rt-multi-thread", "fs", "process", "macros", "tracing", "io-util"] }
tokio-stream = { version = "0.1.11", features = ["fs"] }
tracing = { version = "0.1.37", features = ["async-await"] }
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
[dev-dependencies]
async-tempfile = "0.2.0"
futures = "0.3.25"
tempfile = "3.3.0"