[package]
edition = "2024"
rust-version = "1.85"
name = "spec-spine-cli"
version = "0.7.0"
authors = ["The spec-spine Authors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The `spec-spine` command-line tool: compile a markdown spec corpus into a deterministic authority registry and query it. A thin wrapper over spec-spine-core."
homepage = "https://github.com/bartekus/spec-spine"
readme = "README.md"
keywords = [
"spec",
"governance",
"authority",
"determinism",
"agents",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/bartekus/spec-spine"
resolver = "2"
[package.metadata.spec-spine]
spec = "001-compile-registry"
[[bin]]
name = "spec-spine"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "couple"
path = "tests/couple.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ed25519-dalek]
version = "2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.spec-spine-core]
version = "0.7.0"
[dependencies.spec-spine-types]
version = "0.7.0"
[dependencies.time]
version = "0.3"
features = ["formatting"]
[dev-dependencies.tempfile]
version = "3"
[lints.rust]
unsafe_code = "forbid"