krab_cli 0.2.0

The `krab` CLI: dev workflow, generators, governance, and release operations for the Krab framework
[package]

name = "krab_cli"

version.workspace = true

edition.workspace = true

rust-version.workspace = true

license.workspace = true

authors.workspace = true

repository.workspace = true

homepage.workspace = true

readme = "README.md"

documentation = "https://docs.rs/krab_cli"

description = "The `krab` CLI: dev workflow, generators, governance, and release operations for the Krab framework"

keywords = ["krab", "cli", "web", "framework", "codegen"]

categories = ["command-line-utilities", "development-tools", "web-programming"]



# The package is `krab_cli` because the crates.io name `krab` was taken in 2023

# by an unrelated crate. The *binary* is `krab`, which is how every document in

# the repository invokes it (`krab doctor`, `krab new`, `krab release certify`)

# and what `cargo install krab_cli` puts on PATH. Without this section the

# binary would inherit the package name and none of those commands would work.

[[bin]]

name = "krab"

path = "src/main.rs"



[dependencies]

clap = { version = "4.4", features = ["derive"] }

anyhow.workspace = true

serde_json.workspace = true

serde = { workspace = true, features = ["derive"] }

toml = "0.8"

# `auth` provides the Argon2id hashing behind `krab auth hash-password`, so the

# CLI produces credentials in exactly the format the auth service verifies.

krab_core = { workspace = true, features = ["auth"] }



[dev-dependencies]

tempfile = "3"

serial_test = "3"