- 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
28 lines
579 B
TOML
28 lines
579 B
TOML
[package]
|
|
name = "doot-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[[bin]]
|
|
name = "doot"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
doot-utils.workspace = true
|
|
doot-lang.workspace = true
|
|
doot-core.workspace = true
|
|
clap.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
smol.workspace = true
|
|
indicatif.workspace = true
|
|
ratatui.workspace = true
|
|
crossterm.workspace = true
|
|
thiserror.workspace = true
|
|
anyhow.workspace = true
|
|
blake3.workspace = true
|
|
glob = "0.3"
|
|
age.workspace = true
|
|
indexmap = "2"
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|