[package]
edition = "2024"
rust-version = "1.85"
name = "simit"
version = "0.17.3"
build = false
include = [
"/Cargo.lock",
"/Cargo.toml",
"/CHANGELOG.md",
"/LICENSE",
"/README.md",
"/src/**/*.rs",
"/tests/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Semver-aware git commit helper for Rust projects"
documentation = "https://docs.rs/simit"
readme = "README.md"
keywords = [
"git",
"semver",
"release",
"cargo",
"commit",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://codeberg.org/caniko/simit"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[package.metadata.simit.flake]
scope = "full"
[lib]
name = "simit"
path = "src/lib.rs"
[[bin]]
name = "simit"
path = "src/main.rs"
[[test]]
name = "changelog"
path = "tests/changelog.rs"
[[test]]
name = "chocolatey"
path = "tests/chocolatey.rs"
[[test]]
name = "commit"
path = "tests/commit.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "features"
path = "tests/features.rs"
[[test]]
name = "homebrew"
path = "tests/homebrew.rs"
[[test]]
name = "hooks_install"
path = "tests/hooks_install.rs"
[[test]]
name = "init_apt"
path = "tests/init_apt.rs"
[[test]]
name = "init_aur"
path = "tests/init_aur.rs"
[[test]]
name = "init_chocolatey"
path = "tests/init_chocolatey.rs"
[[test]]
name = "init_ci"
path = "tests/init_ci.rs"
[[test]]
name = "init_copr"
path = "tests/init_copr.rs"
[[test]]
name = "init_flake"
path = "tests/init_flake.rs"
[[test]]
name = "init_homebrew_tap"
path = "tests/init_homebrew_tap.rs"
[[test]]
name = "init_release"
path = "tests/init_release.rs"
[[test]]
name = "init_scoop_bucket"
path = "tests/init_scoop_bucket.rs"
[[test]]
name = "projects"
path = "tests/projects.rs"
[[test]]
name = "projects_discover"
path = "tests/projects_discover.rs"
[[test]]
name = "registry"
path = "tests/registry.rs"
[[test]]
name = "registry_discover"
path = "tests/registry_discover.rs"
[[test]]
name = "release_plan"
path = "tests/release_plan.rs"
[[test]]
name = "release_secrets"
path = "tests/release_secrets.rs"
[[test]]
name = "release_verify"
path = "tests/release_verify.rs"
[[test]]
name = "scaffold"
path = "tests/scaffold.rs"
[[test]]
name = "scoop"
path = "tests/scoop.rs"
[[test]]
name = "upgrade"
path = "tests/upgrade.rs"
[[test]]
name = "user_config"
path = "tests/user_config.rs"
[[test]]
name = "windows"
path = "tests/windows.rs"
[[test]]
name = "winget"
path = "tests/winget.rs"
[dependencies.anyhow]
version = "1"
[dependencies.camino]
version = "1"
features = ["serde1"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.clap_mangen]
version = "0.3"
[dependencies.directories-next]
version = "2"
[dependencies.fs2]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.toml_edit]
version = "0.25"
features = ["serde"]
[dev-dependencies.serde_yaml]
version = "0.9"
[dev-dependencies.tempfile]
version = "3"