[package]
edition = "2024"
name = "lab-ops"
version = "0.1.23"
authors = ["FAZuH <mail@fazuh.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Personal utility tools for my homelab"
readme = "README.md"
keywords = [
"homelab",
"docker",
"iptables",
"devops",
"cli",
]
categories = [
"command-line-utilities",
"network-programming",
"virtualization",
]
license = "MIT"
repository = "https://github.com/FAZuH/lab-ops"
[features]
docker-tests = []
[lib]
name = "lab_ops"
path = "src/lib.rs"
[[bin]]
name = "lab-ops"
path = "src/main.rs"
[[test]]
name = "auto_discover"
path = "tests/auto_discover.rs"
[[test]]
name = "cf2ansible"
path = "tests/cf2ansible.rs"
[[test]]
name = "natmap_docker"
path = "tests/natmap_docker.rs"
[dependencies.bollard]
version = "0.21.0"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
features = ["unstable-dynamic"]
[dependencies.color-eyre]
version = "0.6.5"
[dependencies.comfy-table]
version = "7.2.2"
[dependencies.lab-ops_auto-discover]
version = "0.1.0"
[dependencies.lab-ops_lab-lib]
version = "0.1.0"
[dependencies.lab-ops_natmap]
version = "0.1.0"
[dependencies.regex]
version = "1.12.3"
[dependencies.tokio]
version = "1.52.2"
features = ["rt"]
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[lints.clippy]
new_without_default = "allow"
uninlined_format_args = "warn"