[package]
name = "heimdal"
version = "2.1.0"
edition = "2021"
authors = ["Aleem Isiaka"]
description = "A universal dotfile and system configuration manager"
license = "MIT"
repository = "https://github.com/limistah/heimdal"
homepage = "https://github.com/limistah/heimdal"
documentation = "https://github.com/limistah/heimdal#readme"
readme = "README.md"
keywords = ["dotfiles", "configuration", "package-manager", "stow", "cli"]
categories = ["command-line-utilities", "config", "development-tools"]
rust-version = "1.70"
[dependencies]
clap = { version = "4.5", features = ["derive", "cargo", "env"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
toml = "0.8"
anyhow = "1.0"
thiserror = "1.0"
log = "0.4"
env_logger = "0.11"
colored = "2.1"
dialoguer = "0.11"
indicatif = "0.18"
console = "0.15"
walkdir = "2.5"
glob = "0.3"
shellexpand = "3.1"
once_cell = "1.20"
chrono = { version = "0.4", features = ["serde"] }
dirs = "5.0"
strsim = "0.11"
fuzzy-matcher = "0.3"
hostname = "0.3"
whoami = "1.5"
uuid = { version = "1.7", features = ["v4", "serde"] }
md5 = "0.7"
sha2 = "0.10"
bincode = "1.3"
reqwest = { version = "0.12", features = ["blocking", "rustls-tls"], default-features = false }
regex = "1.10"
keyring = { version = "3.2", features = ["apple-native", "windows-native", "linux-native"] }
[dev-dependencies]
tempfile = "3.8"
serial_test = "3.0"
assert_cmd = "2.0"
predicates = "3.0"
assert_fs = "1.1"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"