[package]
edition = "2024"
rust-version = "1.85"
name = "spec-spine-cli"
version = "0.23.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/statecrafting/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/statecrafting/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 = "closure"
path = "tests/closure.rs"
[[test]]
name = "closure_composed"
path = "tests/closure_composed.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "couple"
path = "tests/couple.rs"
[[test]]
name = "impacts"
path = "tests/impacts.rs"
[[test]]
name = "interface"
path = "tests/interface.rs"
[[test]]
name = "interface_composed"
path = "tests/interface_composed.rs"
[[test]]
name = "obligations"
path = "tests/obligations.rs"
[[test]]
name = "scope"
path = "tests/scope.rs"
[[test]]
name = "spec_id"
path = "tests/spec_id.rs"
[[test]]
name = "verifier_fixtures"
path = "tests/verifier_fixtures.rs"
[[test]]
name = "verify_attestation_bytes"
path = "tests/verify_attestation_bytes.rs"
[[test]]
name = "verify_streams"
path = "tests/verify_streams.rs"
[[test]]
name = "waiver"
path = "tests/waiver.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.ed25519-dalek]
version = "3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.spec-spine-core]
version = "0.23.0"
[dependencies.spec-spine-types]
version = "0.23.0"
[dependencies.time]
version = "0.3"
features = ["formatting"]
[dev-dependencies.sha2]
version = "0.11"
[dev-dependencies.tempfile]
version = "3"
[lints.rust]
unsafe_code = "forbid"