[package]
edition = "2024"
name = "git-std"
version = "0.11.2"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standard git workflow — commits, versioning, hooks"
homepage = "https://github.com/driftsys/git-std"
documentation = "https://driftsys.github.io/git-std/"
readme = "README.md"
keywords = [
"git",
"conventional-commits",
"hooks",
"versioning",
"changelog",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/driftsys/git-std"
[[bin]]
name = "git-std"
path = "src/main.rs"
[[test]]
name = "bootstrap"
path = "tests/bootstrap.rs"
[[test]]
name = "bump"
path = "tests/bump.rs"
[[test]]
name = "bump_custom"
path = "tests/bump_custom.rs"
[[test]]
name = "bump_stable"
path = "tests/bump_stable.rs"
[[test]]
name = "changelog"
path = "tests/changelog.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "commit"
path = "tests/commit.rs"
[[test]]
name = "completions"
path = "tests/completions.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "config_errors"
path = "tests/config_errors.rs"
[[test]]
name = "doctor"
path = "tests/doctor.rs"
[[test]]
name = "hooks"
path = "tests/hooks.rs"
[[test]]
name = "hooks_install"
path = "tests/hooks_install.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[[test]]
name = "lint"
path = "tests/lint.rs"
[[test]]
name = "lint_range"
path = "tests/lint_range.rs"
[[test]]
name = "lint_strict"
path = "tests/lint_strict.rs"
[[test]]
name = "monorepo"
path = "tests/monorepo.rs"
[[test]]
name = "update_check"
path = "tests/update_check.rs"
[[test]]
name = "version"
path = "tests/version.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.glob]
version = "0.3.3"
[dependencies.inquire]
version = "0.9"
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.standard-changelog]
version = "0.11.2"
[dependencies.standard-commit]
version = "0.11.2"
[dependencies.standard-githooks]
version = "0.11.2"
[dependencies.standard-version]
version = "0.11.2"
[dependencies.toml]
version = "1.1"
[dependencies.yansi]
version = "1"
[dev-dependencies.assert_cmd]
version = "2.2.0"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.clap]
version = "4.6.0"
features = ["derive"]
[build-dependencies.clap_complete]
version = "4"
[build-dependencies.clap_mangen]
version = "0.3"