zbuild/Cargo.toml
Filipe Rodrigues 8076364073 Command executions now run on their own thread.
This solves issues with execution timings being much larger than actually observed.
2022-10-10 20:55:43 +01:00

40 lines
816 B
TOML

[package]
edition = "2021"
name = "zbuild"
version = "0.1.0"
[dependencies]
# Futures
tokio = { version = "1.20.1", features = ["full"] }
# Cmd
clap = { version = "3.2.17", features = ["derive"] }
# Logging
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
# Error handling
anyhow = "1.0.61"
thiserror = "1.0.35"
# Serde
serde = { version = "1.0.143", features = ["derive"] }
serde_yaml = "0.9.9"
# Util
async-broadcast = "0.4.1"
async-recursion = "1.0.0"
byteorder = "1.4.3"
dashmap = "5.3.4"
filetime = "0.2.17"
futures = "0.3.23"
itertools = "0.10.3"
notify = "5.0.0"
notify-debouncer-mini = "0.2.1"
npath = { git = "https://github.com/gdzx/npath", rev = "00acdd2974bb1682b6d1dcc6f0ea7cd54da42381" }
petgraph = "0.6.2"
tokio-stream = "0.1.10"
pin-project = "1.0.12"