doot/Cargo.toml
Ray Andrew 0eb4d38392
feat(utils): introduce doot-utils crate with XDG directory helpers
- Add new `doot-utils` crate with `xdg` module for consistent cross-platform directory resolution
- Replace `dirs` crate usage with `doot_utils::xdg` functions in cli, core, and lang crates
- Use XDG layout on all platforms (including macOS) for config, data, cache, and state directories
- Add home_dir(), config_home(), data_home(), cache_home(), and state_home() helpers
- Update dependencies to use doot-utils workspace reference
- Remove unused dirs and related crates from Cargo.lock
- Improve error handling in template rendering and package installation
- Add InstalledCache for package managers to reduce process spawning
- Optimize brew package installation with parallel fetching and sequential installing
- Fix path canonicalization in e2e tests for consistent symlink handling
- Add clippy allowance for large parser errors in doot-lang
2026-06-09 23:24:46 -07:00

43 lines
872 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-utils = { path = "crates/doot-utils" }
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-recursion = "1"
futures-lite = "2"
surf = "2"
rayon = "1"
age = "0.10"
walkdir = "2"
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"] }
[profile.release]
lto = true
codegen-units = 1
strip = true