[package]
edition = "2024"
name = "dotr-dear"
version = "2.0.2"
authors = ["Utsob Roy <connect@utsob.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A dotfiles manager as dear as a daughter."
readme = "README.md"
license = "MIT"
repository = "https://github.com/uroybd/dotr"
[features]
mangen = ["dep:clap_mangen"]
[lib]
name = "dotr_dear"
path = "src/lib.rs"
[[bin]]
name = "dotr"
path = "src/main.rs"
[[bin]]
name = "mangen"
path = "src/bin/mangen.rs"
required-features = ["mangen"]
[[test]]
name = "actions_tests"
path = "tests/actions_tests.rs"
[[test]]
name = "clean_tests"
path = "tests/clean_tests.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "compile_string_tests"
path = "tests/compile_string_tests.rs"
[[test]]
name = "dest_templating_tests"
path = "tests/dest_templating_tests.rs"
[[test]]
name = "diff_tests"
path = "tests/diff_tests.rs"
[[test]]
name = "dry_run_tests"
path = "tests/dry_run_tests.rs"
[[test]]
name = "ignore_tests"
path = "tests/ignore_tests.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "package_variables_tests"
path = "tests/package_variables_tests.rs"
[[test]]
name = "packages_subcommand_tests"
path = "tests/packages_subcommand_tests.rs"
[[test]]
name = "prompt_backends_tests"
path = "tests/prompt_backends_tests.rs"
[[test]]
name = "prompt_tests"
path = "tests/prompt_tests.rs"
[[test]]
name = "subcommand_tests"
path = "tests/subcommand_tests.rs"
[[test]]
name = "symlink_tests"
path = "tests/symlink_tests.rs"
[[test]]
name = "templating_tests"
path = "tests/templating_tests.rs"
[[test]]
name = "uservariables_tests"
path = "tests/uservariables_tests.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.clap]
version = "4.5.51"
features = ["derive"]
[dependencies.clap_complete]
version = "4.6.7"
[dependencies.clap_complete_nushell]
version = "4.6.0"
[dependencies.clap_mangen]
version = "0.3.0"
optional = true
[dependencies.diff]
version = "0.1.13"
[dependencies.glob-match]
version = "0.2.1"
[dependencies.keyring]
version = "4"
[dependencies.regex]
version = "1.12.2"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tera]
version = "2"
[dependencies.toml]
version = "1.1.2"
features = [
"serde",
"display",
]
[dependencies.uuid]
version = "1.18.1"
features = ["v4"]
[dependencies.walkdir]
version = "2.5.0"
[profile.release]
lto = true
strip = true
[profile.test]
opt-level = 0