[package]
edition = "2024"
rust-version = "1.87"
name = "dotm-rs"
version = "2.2.1"
authors = ["Anten Skrabec <cebarks@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dotfile manager with composable roles, templates, and host-specific overrides"
readme = "README.md"
keywords = [
"dotfiles",
"configuration",
"symlink",
"template",
"stow",
]
categories = [
"command-line-utilities",
"config",
]
license = "AGPL-3.0-only"
repository = "https://github.com/cebarks/dotm"
[lib]
name = "dotm"
path = "src/lib.rs"
[[bin]]
name = "dotm"
path = "src/main.rs"
[[test]]
name = "add"
path = "tests/add.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "config_parsing"
path = "tests/config_parsing.rs"
[[test]]
name = "copy_drift"
path = "tests/copy_drift.rs"
[[test]]
name = "deployer"
path = "tests/deployer.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[[test]]
name = "hooks"
path = "tests/hooks.rs"
[[test]]
name = "list"
path = "tests/list.rs"
[[test]]
name = "loader"
path = "tests/loader.rs"
[[test]]
name = "orchestrator"
path = "tests/orchestrator.rs"
[[test]]
name = "orphan"
path = "tests/orphan.rs"
[[test]]
name = "path_expansion"
path = "tests/path_expansion.rs"
[[test]]
name = "resolver"
path = "tests/resolver.rs"
[[test]]
name = "scanner"
path = "tests/scanner.rs"
[[test]]
name = "state"
path = "tests/state.rs"
[[test]]
name = "system_packages"
path = "tests/system_packages.rs"
[[test]]
name = "template"
path = "tests/template.rs"
[[test]]
name = "vars"
path = "tests/vars.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.crossterm]
version = "0.29"
[dependencies.dirs]
version = "6"
[dependencies.fs2]
version = "0.4"
[dependencies.gix]
version = "0.84"
features = [
"revision",
"sha1",
]
default-features = false
[dependencies.hostname]
version = "0.4"
[dependencies.nix]
version = "0.31"
features = [
"user",
"fs",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.shellexpand]
version = "3"
[dependencies.similar]
version = "3"
[dependencies.tera]
version = "1"
[dependencies.toml]
version = "1"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"