hyperhive/hivectl/Cargo.toml
atlas 270d3aafa2 docs: declare readme = "README.md" for the last four crates
hive-c0re, hive-claude, hive-forge and hivectl each ship a README.md but
never declared it in their package manifest, so cargo/docs.rs metadata
did not pick it up. Every other workspace member already sets the field;
this closes the gap left after the README backfill.
2026-07-27 09:35:06 +02:00

26 lines
510 B
TOML

[package]
name = "hivectl"
edition.workspace = true
version.workspace = true
readme = "README.md"
[lints]
workspace = true
[[bin]]
name = "hivectl"
path = "src/main.rs"
[dependencies]
anyhow.workspace = true
clap.workspace = true
clap_complete.workspace = true
clap-markdown = "0.1"
hive-host-sock.workspace = true
hive-sh4re.workspace = true
hive-types.workspace = true
indicatif.workspace = true
libc.workspace = true
serde_json.workspace = true
tokio.workspace = true
tracing-subscriber.workspace = true