doot/crates/doot-lang/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

31 lines
639 B
TOML

[package]
name = "doot-lang"
version.workspace = true
edition.workspace = true
[dependencies]
doot-utils.workspace = true
chumsky.workspace = true
ariadne.workspace = true
serde.workspace = true
serde_json.workspace = true
toml.workspace = true
smol.workspace = true
async-recursion.workspace = true
futures-lite.workspace = true
surf.workspace = true
rayon.workspace = true
walkdir.workspace = true
blake3.workspace = true
os_info.workspace = true
thiserror.workspace = true
anyhow.workspace = true
indexmap = "2"
glob = "0.3"
hostname = "0.4"
age = "0.10"
ordered-float = "5"
tracing.workspace = true
[dev-dependencies]
tempfile = "3"