[package]
edition = "2024"
rust-version = "1.85"
name = "release-kit"
version = "0.2.2"
build = "build.rs"
exclude = [
"/_docs",
"/.github",
"/scripts",
"/tests",
"/AGENTS.md",
"/CLAUDE.md",
"/flake.nix",
"/flake.lock",
"/justfile",
"/deny.toml",
"/dist-workspace.toml",
"/release-plz.toml",
"/.pre-commit-config.yaml",
"/.markdownlint",
"/.markdownlint-cli2.jsonc",
"/.editorconfig",
"/.envrc",
"/.spec-driven-docs",
"/.claude",
"/.agents",
"/dprint.json",
"/lychee.toml",
"/_typos.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A canonical release workflow: a technology-agnostic method, per-technology bindings, and the rk CLI that lands and serves them."
homepage = "https://github.com/gubasso/release-kit"
readme = "README.md"
keywords = [
"release",
"release-automation",
"changelog",
"semver",
"workflow",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT AND CC-BY-4.0"
repository = "https://github.com/gubasso/release-kit"
[lib]
name = "release_kit"
path = "src/lib.rs"
[[bin]]
name = "rk"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.104"
[dependencies.camino]
version = "1.2.5"
features = ["serde1"]
[dependencies.clap]
version = "4.6.6"
features = [
"derive",
"wrap_help",
]
[dependencies.clap_complete]
version = "4.6.9"
[dependencies.humantime]
version = "2.4.0"
[dependencies.include_dir]
version = "0.7.4"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.sha2]
version = "0.11.0"
[dependencies.thiserror]
version = "2.0.20"
[dependencies.toml]
version = "1.1.4"
[dependencies.zeroize]
version = "1.9.0"
[dev-dependencies.assert_cmd]
version = "2.2.2"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.tempfile]
version = "3.27.0"
[target."cfg(unix)".dependencies.libc]
version = "0.2.189"
[lints.clippy]
dbg_macro = "deny"
exit = "deny"
expect_used = "warn"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "warn"
wildcard_imports = "deny"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"
unused_must_use = "deny"
[profile.dist]
lto = "thin"
inherits = "release"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"