[package]
edition = "2021"
name = "spectra-cli"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OpenSpectra command-line interface."
readme = "README.md"
keywords = [
"spectra",
"spec-drift",
"openspec",
"cli",
"git",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/howie/openspectra"
[[bin]]
name = "spectra"
path = "src/main.rs"
[[test]]
name = "analyze_integration"
path = "tests/analyze_integration.rs"
[[test]]
name = "artifact_integration"
path = "tests/artifact_integration.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[[test]]
name = "completion_integration"
path = "tests/completion_integration.rs"
[[test]]
name = "config_integration"
path = "tests/config_integration.rs"
[[test]]
name = "instructions_integration"
path = "tests/instructions_integration.rs"
[[test]]
name = "openspec_compat"
path = "tests/openspec_compat.rs"
[[test]]
name = "schemas_integration"
path = "tests/schemas_integration.rs"
[[test]]
name = "status_integration"
path = "tests/status_integration.rs"
[[test]]
name = "update_integration"
path = "tests/update_integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.spectra-core]
version = "0.5.0"
[dev-dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dev-dependencies.sha2]
version = "0.10"