[package]
edition = "2024"
name = "cambi"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A tool that infers semantic version bumps from conventional commits, updates CHANGELOG.md, and manages GitHub releases."
homepage = "https://sw.cowtech.it/cambi"
readme = "README.md"
keywords = ["terminal"]
categories = [
"command-line-utilities",
"command-line-interface",
]
license = "ISC"
repository = "https://github.com/ShogunPanda/cambi"
[lib]
name = "cambi"
path = "src/lib.rs"
test = false
doctest = false
[[bin]]
name = "cambi"
path = "src/main.rs"
[[test]]
name = "changelog_additional_tests"
path = "tests/changelog_additional_tests.rs"
[[test]]
name = "changelog_branch_tests"
path = "tests/changelog_branch_tests.rs"
[[test]]
name = "changelog_integration_tests"
path = "tests/changelog_integration_tests.rs"
[[test]]
name = "changelog_sorting_tests"
path = "tests/changelog_sorting_tests.rs"
[[test]]
name = "changelog_target_override_tests"
path = "tests/changelog_target_override_tests.rs"
[[test]]
name = "changelog_tests"
path = "tests/changelog_tests.rs"
[[test]]
name = "changelog_unit_tests"
path = "tests/changelog_unit_tests.rs"
[[test]]
name = "cli_integration_tests"
path = "tests/cli_integration_tests.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "conventional_tests"
path = "tests/conventional_tests.rs"
[[test]]
name = "filters_tests"
path = "tests/filters_tests.rs"
[[test]]
name = "git_more_tests"
path = "tests/git_more_tests.rs"
[[test]]
name = "git_tests"
path = "tests/git_tests.rs"
[[test]]
name = "release_additional_tests"
path = "tests/release_additional_tests.rs"
[[test]]
name = "release_api_integration_tests"
path = "tests/release_api_integration_tests.rs"
[[test]]
name = "release_idempotency_tests"
path = "tests/release_idempotency_tests.rs"
[[test]]
name = "release_more_tests"
path = "tests/release_more_tests.rs"
[[test]]
name = "release_unit_tests"
path = "tests/release_unit_tests.rs"
[[test]]
name = "update_additional_tests"
path = "tests/update_additional_tests.rs"
[[test]]
name = "update_changelog_integration_tests"
path = "tests/update_changelog_integration_tests.rs"
[[test]]
name = "update_error_tests"
path = "tests/update_error_tests.rs"
[[test]]
name = "update_more_tests"
path = "tests/update_more_tests.rs"
[[test]]
name = "update_unit_tests"
path = "tests/update_unit_tests.rs"
[[test]]
name = "update_update_override_tests"
path = "tests/update_update_override_tests.rs"
[dependencies.anyhow]
version = "1.0.101"
features = ["backtrace"]
[dependencies.chrono]
version = "0.4.42"
features = [
"clock",
"std",
]
default-features = false
[dependencies.clap]
version = "4.5.58"
features = [
"std",
"derive",
"error-context",
"help",
]
default-features = false
[dependencies.git2]
version = "0.20.2"
[dependencies.regex]
version = "1.12.3"
[dependencies.semver]
version = "1.0.27"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.tempera]
version = "0.3.0"
[dependencies.toml]
version = "0.9.8"
[dependencies.toml_edit]
version = "0.22.27"
[dependencies.ureq]
version = "2.12.1"
features = ["json"]
[dev-dependencies.assert_cmd]
version = "2.0.17"
[dev-dependencies.predicates]
version = "3.1.3"
[dev-dependencies.serial_test]
version = "3.2.0"
[dev-dependencies.tempfile]
version = "3.23.0"
[dev-dependencies.tiny_http]
version = "0.12.0"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true