refactor(#2352): extract standalone hivectl crate, hive-c0re daemon-only

This commit is contained in:
damocles 2026-07-15 22:36:13 +02:00
commit cc67a05974
13 changed files with 236 additions and 147 deletions

24
hivectl/Cargo.toml Normal file
View file

@ -0,0 +1,24 @@
[package]
name = "hivectl"
edition.workspace = true
version.workspace = true
[lints]
workspace = true
[[bin]]
name = "hivectl"
path = "src/main.rs"
[dependencies]
anyhow.workspace = true
bcrypt.workspace = true
clap.workspace = true
clap_complete.workspace = true
clap-markdown = "0.1"
hive-host-sock.workspace = true
hive-sh4re.workspace = true
indicatif.workspace = true
serde_json.workspace = true
tokio.workspace = true
tracing-subscriber.workspace = true