depl 2.4.3

Toolkit for a bunch of local and remote CI/CD actions
Documentation
[package]
name = "depl"
description = "Toolkit for a bunch of local and remote CI/CD actions"
version = "2.4.3"
edition = "2024"
rust-version = "1.88"
authors = ["Klimenty Titov <aclo.create@gmail.com>"]
license = "MIT"
repository = "https://github.com/impulse-sw/deployer"

[[bin]]
name = "depl"
path = "src/main.rs"

[dependencies]
anyhow = "1"
async-io-pipe = "0.1.0"
async-process = "2.3.1"
async-trait = "0.1.50"
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
clearscreen = "4.0.3"
colored = "3"
ctrlc = "3.4"
dirs = "6"
env-file-reader = "0.3"
fs-change-notifier = "0.2.0"
fs_extra = "1.2"
inquire-reorder = { version = "0.7.6", features = ["reorder"] }
mimalloc = "0.1"
nix = { version = "0.31", features = ["signal", "user"] }
regex = "1.12"
russh = "0.57"
sd-notify = "0.4.5"
semver = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_pretty_yaml = "0.9.37"
smart-patcher = { version = "0.5.2", features = ["lua", "rhai"] }
strip-ansi-escapes = "0.2"
termimad = "0.34"
tokio = { version = "1", features = ["rt-multi-thread", "io-std", "time", "macros", "sync"] }
uuid = { version = "1.20", features = ["v4", "fast-rng"] }
vaultrs = "0.7"

[package.metadata.deb]
maintainer = "Klimenty Titov <aclo.create@gmail.com>"
copyright = "2024-2026, Klimenty Titov <aclo.create@gmail.com>"
license-file = ["LICENSE", "1"]
extended-description = """\
Deployer is a relatively simple, yet powerful \
localhost CI/CD instrument."""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
    { source = "target/release/depl", dest = "usr/bin/", mode = "755" },
    { source = "README.md", dest = "usr/share/doc/depl/", mode = "644"},
    { source = "MIGRATIONS.md", dest = "usr/share/doc/depl/", mode = "644"},
    { source = "DOCS.md", dest = "usr/share/doc/depl/", mode = "644"},
]