[package]
edition = "2021"
name = "req-cli"
version = "0.5.0-rc.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Managed requirements CLI for LLM agents and humans"
readme = "README.md"
keywords = [
"requirements",
"cli",
"agents",
"llm",
"traceability",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Barks944/cli_req"
[[bin]]
name = "req"
path = "src/main.rs"
[[test]]
name = "adopt"
path = "tests/adopt.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "content_hash"
path = "tests/content_hash.rs"
[[test]]
name = "coverage_boost"
path = "tests/coverage_boost.rs"
[[test]]
name = "defects"
path = "tests/defects.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "gitignore"
path = "tests/gitignore.rs"
[[test]]
name = "mcp_tools"
path = "tests/mcp_tools.rs"
[[test]]
name = "migrations"
path = "tests/migrations.rs"
[[test]]
name = "safety"
path = "tests/safety.rs"
[[test]]
name = "serve"
path = "tests/serve.rs"
[[test]]
name = "slice_a"
path = "tests/slice_a.rs"
[[test]]
name = "slice_b"
path = "tests/slice_b.rs"
[[test]]
name = "slice_c"
path = "tests/slice_c.rs"
[[test]]
name = "slice_g"
path = "tests/slice_g.rs"
[[test]]
name = "storage"
path = "tests/storage.rs"
[[test]]
name = "test_map"
path = "tests/test_map.rs"
[[test]]
name = "v2_format"
path = "tests/v2_format.rs"
[[test]]
name = "validator"
path = "tests/validator.rs"
[[test]]
name = "worktree_hooks"
path = "tests/worktree_hooks.rs"
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.7"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = [
"derive",
"wrap_help",
"env",
]
[dependencies.comfy-table]
version = "7"
[dependencies.dialoguer]
version = "0.11"
[dependencies.fs2]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.ignore]
version = "0.4"
[dependencies.once_cell]
version = "1"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"signal",
]
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = true
strip = true