[package]
edition = "2024"
rust-version = "1.85"
name = "release-tool"
version = "0.3.1"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Configuration-driven release lifecycle for computed-parameter repositories"
readme = "README.md"
license = "MIT"
repository = "https://github.com/computed-parameter/release-tool"
[lib]
name = "release_tool"
path = "src/lib.rs"
[[bin]]
name = "release-tool"
path = "src/main.rs"
[[test]]
name = "command"
path = "tests/command.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "config_cli"
path = "tests/config_cli.rs"
[[test]]
name = "docker_target"
path = "tests/docker_target.rs"
[[test]]
name = "doctor_cli"
path = "tests/doctor_cli.rs"
[[test]]
name = "examples"
path = "tests/examples.rs"
[[test]]
name = "github_maven_publisher"
path = "tests/github_maven_publisher.rs"
[[test]]
name = "github_release_publisher"
path = "tests/github_release_publisher.rs"
[[test]]
name = "library_cli"
path = "tests/library_cli.rs"
[[test]]
name = "maven_target"
path = "tests/maven_target.rs"
[[test]]
name = "oci_image"
path = "tests/oci_image.rs"
[[test]]
name = "plan_cli"
path = "tests/plan_cli.rs"
[[test]]
name = "publish_cli"
path = "tests/publish_cli.rs"
[[test]]
name = "repository_state"
path = "tests/repository_state.rs"
[[test]]
name = "resolve"
path = "tests/resolve.rs"
[[test]]
name = "seal"
path = "tests/seal.rs"
[[test]]
name = "tag_catalog"
path = "tests/tag_catalog.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.chrono]
version = "0.4.42"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4.5.53"
features = ["derive"]
[dependencies.hex]
version = "0.4.3"
[dependencies.regex]
version = "1.12.2"
[dependencies.reqwest]
version = "0.12.24"
features = [
"blocking",
"rustls-tls",
]
default-features = false
[dependencies.roxmltree]
version = "0.21.1"
[dependencies.semver]
version = "1.0.27"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.sha2]
version = "0.10.9"
[dependencies.tempfile]
version = "3.23.0"
[dependencies.toml]
version = "0.9.8"
[dev-dependencies.assert_cmd]
version = "2.1.1"
[dev-dependencies.predicates]
version = "3.1.3"
[profile.release]
lto = "thin"
strip = true