[package]
edition = "2024"
rust-version = "1.85"
name = "catapulta"
version = "0.9.0"
authors = ["LeakIX <contact@leakix.net>"]
build = false
exclude = [
".github/",
"taplo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Declarative deployment DSL for Rust - provision, configure, and launch containers to any VPS"
documentation = "https://leakix.github.io/catapulta/catapulta/"
readme = "README.md"
keywords = [
"deployment",
"docker",
"vps",
"devops",
"ssh",
]
categories = [
"command-line-utilities",
"development-tools",
"config",
]
license = "MIT"
repository = "https://github.com/LeakIX/catapulta"
[features]
integration = []
[lib]
name = "catapulta"
path = "src/lib.rs"
[[example]]
name = "basic_deploy"
path = "examples/basic_deploy.rs"
[[example]]
name = "cloudflare_dns"
path = "examples/cloudflare_dns.rs"
[[example]]
name = "libvirt_deploy"
path = "examples/libvirt_deploy.rs"
[[example]]
name = "local_deploy"
path = "examples/local_deploy.rs"
[[example]]
name = "multi_app"
path = "examples/multi_app.rs"
[[example]]
name = "with_basic_auth"
path = "examples/with_basic_auth.rs"
[[test]]
name = "app"
path = "tests/app.rs"
[[test]]
name = "caddy"
path = "tests/caddy.rs"
[[test]]
name = "caddyfile"
path = "tests/caddyfile.rs"
[[test]]
name = "compose"
path = "tests/compose.rs"
[[test]]
name = "dns"
path = "tests/dns.rs"
[[test]]
name = "dns_ovh"
path = "tests/dns_ovh.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "provision_digitalocean"
path = "tests/provision_digitalocean.rs"
[[test]]
name = "provision_libvirt"
path = "tests/provision_libvirt.rs"
[[test]]
name = "source_build"
path = "tests/source_build.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.caddyfile-rs]
version = "0.1"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.cloudflare]
version = "0.14"
[dependencies.docker-compose-types]
version = "0.22"
features = ["indexmap"]
[dependencies.indexmap]
version = "2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.50"
features = ["rt"]
[dev-dependencies.caddyfile-rs]
version = "0.1"
[dev-dependencies.docker-compose-types]
version = "0.22"
features = ["indexmap"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.serde_yaml]
version = "0.9"
[lints.clippy]
all = "deny"
nursery = "deny"
pedantic = "deny"