[package]
edition = "2024"
rust-version = "1.89.0"
name = "zenops"
version = "0.19.0"
authors = ["Bjorn Ove Hay Andersen <bjrnove@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Declarative system configuration management for shell config and dotfiles."
readme = "README.md"
keywords = [
"dotfiles",
"config",
"shell",
"system",
]
categories = [
"command-line-utilities",
"config",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bjorn-ove/zenops"
[lib]
name = "zenops"
path = "src/lib.rs"
[[bin]]
name = "zenops"
path = "src/main.rs"
[[test]]
name = "apply"
path = "tests/apply.rs"
[[test]]
name = "doctor"
path = "tests/doctor.rs"
[[test]]
name = "git_bootstrap"
path = "tests/git_bootstrap.rs"
[[test]]
name = "git_status"
path = "tests/git_status.rs"
[[test]]
name = "import"
path = "tests/import.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[[test]]
name = "json_output"
path = "tests/json_output.rs"
[[test]]
name = "pkg_list"
path = "tests/pkg_list.rs"
[[test]]
name = "repo_git"
path = "tests/repo_git.rs"
[[test]]
name = "schema"
path = "tests/schema.rs"
[[test]]
name = "shell_render"
path = "tests/shell_render.rs"
[[test]]
name = "ssh_git"
path = "tests/ssh_git.rs"
[[test]]
name = "symlinks"
path = "tests/symlinks.rs"
[[test]]
name = "test_env"
path = "tests/test_env.rs"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.clap_complete]
version = "4.6.5"
[dependencies.env_logger]
version = "0.11.10"
[dependencies.gethostname]
version = "1.1.0"
[dependencies.home]
version = "0.5.12"
[dependencies.indexmap]
version = "2.14.0"
features = ["serde"]
[dependencies.log]
version = "0.4.29"
[dependencies.regex]
version = "1.12.3"
[dependencies.rustyline]
version = "18.0.0"
[dependencies.schemars]
version = "1.2"
features = [
"preserve_order",
"indexmap2",
"smol_str03",
]
[dependencies.semver]
version = "1.0.28"
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.similar]
version = "3.1.0"
[dependencies.smol_str]
version = "0.3.6"
features = ["serde"]
[dependencies.thiserror]
version = "2.0.18"
[dependencies.toml]
version = "1.1.2"
features = ["preserve_order"]
[dependencies.toml_edit]
version = "0.25"
[dependencies.which]
version = "8.0.2"
[dependencies.xshell]
version = "0.2.7"
[dependencies.zenops-expand]
version = "0.5.3"
features = [
"indexmap",
"schemars",
]
[dependencies.zenops-safe-relative-path]
version = "0.5.4"
features = ["schemars"]
[dev-dependencies.similar-asserts]
version = "2.0.0"
[dev-dependencies.tempfile]
version = "3.27.0"