[package]
edition = "2024"
rust-version = "1.88"
name = "govctl"
version = "0.4.3"
build = "build.rs"
include = [
".claude/agents/*",
".claude/commands/*",
".claude/skills/*",
"src/**/*",
"tests/**/*",
"build.rs",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Project governance CLI for RFC, ADR, and Work Item management"
homepage = "https://github.com/govctl-org/govctl"
documentation = "https://docs.rs/govctl"
readme = "README.md"
keywords = [
"governance",
"rfc",
"cli",
"adr",
"specification",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/govctl-org/govctl"
[features]
default = []
tui = [
"ratatui",
"crossterm",
]
[[bin]]
name = "govctl"
path = "src/main.rs"
[[test]]
name = "test_agent_dir"
path = "tests/test_agent_dir.rs"
[[test]]
name = "test_changelog"
path = "tests/test_changelog.rs"
[[test]]
name = "test_delete"
path = "tests/test_delete.rs"
[[test]]
name = "test_describe"
path = "tests/test_describe.rs"
[[test]]
name = "test_display_paths"
path = "tests/test_display_paths.rs"
[[test]]
name = "test_edit"
path = "tests/test_edit.rs"
[[test]]
name = "test_errors"
path = "tests/test_errors.rs"
[[test]]
name = "test_happy_path"
path = "tests/test_happy_path.rs"
[[test]]
name = "test_init"
path = "tests/test_init.rs"
[[test]]
name = "test_lifecycle"
path = "tests/test_lifecycle.rs"
[[test]]
name = "test_lock"
path = "tests/test_lock.rs"
[[test]]
name = "test_move"
path = "tests/test_move.rs"
[[test]]
name = "test_rfc_lifecycle"
path = "tests/test_rfc_lifecycle.rs"
[[test]]
name = "test_scan"
path = "tests/test_scan.rs"
[[test]]
name = "test_source_scan"
path = "tests/test_source_scan.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.comfy-table]
version = "7"
[dependencies.crossterm]
version = "0.29"
optional = true
[dependencies.fs2]
version = "0.4"
[dependencies.globset]
version = "0.4"
[dependencies.jsonschema]
version = "0.42"
[dependencies.owo-colors]
version = "4"
[dependencies.rand]
version = "0.10"
[dependencies.ratatui]
version = "0.30"
optional = true
[dependencies.regex]
version = "1"
[dependencies.semver]
version = "1"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.slug]
version = "0.1"
[dependencies.strum]
version = "0.27"
features = ["derive"]
[dependencies.supports-color]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1"
[dependencies.walkdir]
version = "2"
[dev-dependencies.chrono]
version = "0.4"
[dev-dependencies.insta]
version = "1"
features = ["yaml"]
[dev-dependencies.regex]
version = "1"
[dev-dependencies.tempfile]
version = "3"