[package]
edition = "2021"
name = "project-canon-cli"
version = "0.3.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The project-canon binary — a thin CLI over project-canon-core exposing the doctor, new, and review verbs plus the canon skill installer."
readme = false
license = "MIT"
repository = "https://github.com/jarimustonen/project-canon"
[[bin]]
name = "project-canon"
path = "src/main.rs"
[[test]]
name = "config_cli"
path = "tests/config_cli.rs"
[[test]]
name = "doctor_cli"
path = "tests/doctor_cli.rs"
[[test]]
name = "help_json_cli"
path = "tests/help_json_cli.rs"
[[test]]
name = "new_cli"
path = "tests/new_cli.rs"
[[test]]
name = "review_cli"
path = "tests/review_cli.rs"
[[test]]
name = "skill_cli"
path = "tests/skill_cli.rs"
[[test]]
name = "version_cli"
path = "tests/version_cli.rs"
[dependencies.project-canon-core]
version = "=0.3.1"
[dependencies.toml]
version = "0.8"
[dev-dependencies.project-canon-core]
version = "=0.3.1"
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
all = "warn"