[package]
edition = "2024"
name = "specre"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Atomic, living specification cards for AI-agent-friendly development"
readme = "README.md"
license = "MIT"
repository = "https://github.com/yoshiakist/specre"
[[bin]]
name = "specre"
path = "src/main.rs"
[[test]]
name = "cli_index"
path = "tests/cli_index.rs"
[[test]]
name = "cli_init"
path = "tests/cli_init.rs"
[[test]]
name = "cli_new"
path = "tests/cli_new.rs"
[[test]]
name = "cli_orphans"
path = "tests/cli_orphans.rs"
[[test]]
name = "cli_status"
path = "tests/cli_status.rs"
[[test]]
name = "cli_tag"
path = "tests/cli_tag.rs"
[[test]]
name = "cli_trace"
path = "tests/cli_trace.rs"
[dependencies.chrono]
version = "0.4"
features = [
"now",
"std",
]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "0.8"
[dependencies.ulid]
version = "1"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.assert_fs]
version = "1"
[dev-dependencies.predicates]
version = "3"