[package]
edition = "2024"
rust-version = "1.85"
name = "dotling"
version = "0.4.0"
authors = ["Ade M Ramdani <auricvex@gmail.com>"]
build = false
exclude = [
".github/",
".vscode/",
"flake.*",
"shell.nix",
"default.nix",
".envrc",
"deny.toml",
"clippy.toml",
"rustfmt.toml",
"target/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A dotfiles management CLI — track, link, and sync your config files across machines"
homepage = "https://github.com/auricvex/dotling"
documentation = "https://github.com/auricvex/dotling#readme"
readme = "README.md"
keywords = [
"dotfiles",
"symlink",
"cli",
"config",
"encryption",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/auricvex/dotling"
[[bin]]
name = "dotling"
path = "src/main.rs"
[dependencies.argon2]
version = "0.5"
[dependencies.base64]
version = "0.22"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.clap]
version = "4.6.1"
features = [
"color",
"derive",
]
[dependencies.rand]
version = "0.9"
[dev-dependencies.tempfile]
version = "3.27.0"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1