doot/Cargo.toml
2026-02-05 23:18:33 -06:00

38 lines
768 B
TOML

[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/rayandrew/doot"
[workspace.dependencies]
doot-lang = { path = "crates/doot-lang" }
doot-core = { path = "crates/doot-core" }
chumsky = "0.9"
ariadne = "0.4"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
smol = "2"
async-fs = "2"
async-net = "2"
surf = "2"
rayon = "1"
age = "0.10"
walkdir = "2"
dirs = "6"
similar = "2"
blake3 = "1"
os_info = "3"
indicatif = "0.17"
ratatui = "0.29"
crossterm = "0.28"
thiserror = "2"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] }