[package]
name = "devops-armory"
version = "0.1.1"
description = "Library to make DevOps work easier, based on russh and actix."
authors = ["Marcin Grzybek <mg51@wp.pl>"]
repository = "https://github.com/martin-yeti/devops-armory"
categories = [
"asynchronous",
"network-programming",
]
license = "MIT OR Apache-2.0"
edition = "2024"
[dependencies]
toml = "0.8.19"
serde = { version = "1.0.199", features = ["derive"] }
serde_json = "1.0.116"
serde_derive = "1.0.136"
tokio = { version = "1", features = ["full"] }
base64 = "0.22.1"
openssl = { version = "0.10" }
anyhow = "1.0.86"
russh = "0.45.0"
clap = { version = "4.5.16", features = ["cargo", "derive"] }
aes = "0.8"
async-trait = "0.1"
byteorder = "1.4"
digest = "0.10"
futures = "0.3"
hmac = "0.12"
log = "0.4"
rand = "0.8"
sha1 = { version = "0.10", features = ["oid"] }
sha2 = { version = "0.10", features = ["oid"] }
ssh-encoding = "0.2"
ssh-key = { version = "0.6", features = ["ed25519", "rsa", "encryption"] }
thiserror = "1.0"
tokio-stream = { version = "0.1", features = ["net", "sync"] }
env_logger = "0.10"