From 1ad7145cc54e403896261dd825c75b71780f5031 Mon Sep 17 00:00:00 2001 From: damocles Date: Wed, 9 Sep 2026 23:44:53 +0200 Subject: [PATCH] swap hive-claude back to the published 0.1.1 release now that it's out --- Cargo.lock | 17 +++++++++-------- Cargo.toml | 2 +- docs/tools/subagent.md | 2 +- hive-subagent-mcp/src/session.rs | 5 ++++- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8563a611..28d61b02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1256,7 +1256,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -1780,8 +1780,9 @@ dependencies = [ [[package]] name = "hive-claude" -version = "0.1.0" -source = "git+https://forge.darkest.space/hyperhive/hive-claude?branch=main#bacccc6580504d548387ffff7f0567be603e73a4" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7784a4aeb50369f2a49f052fd3bb28eee143ec6c8af8df806d3e375b045b0661" dependencies = [ "libc", "serde", @@ -3614,7 +3615,7 @@ dependencies = [ "once_cell", "socket2", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -4143,7 +4144,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -4202,7 +4203,7 @@ dependencies = [ "security-framework", "security-framework-sys", "webpki-root-certs", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -4883,7 +4884,7 @@ dependencies = [ "getrandom 0.4.3", "once_cell", "rustix", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -5751,7 +5752,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index ba738ac0..c7ad7dfb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,7 +85,7 @@ hive-jobq = { path = "hive-jobq" } hive-jobq-metrics = { path = "hive-jobq-metrics" } hive-jobq-wire = { path = "hive-jobq-wire" } hive-core-agent-sock = { path = "hive-core-agent-sock" } -hive-claude = { git = "https://forge.darkest.space/hyperhive/hive-claude", branch = "main" } +hive-claude = "0.1.1" hive-host-sock = { path = "hive-host-sock" } hive-priv-sock = { path = "hive-priv-sock" } hive-sock-client = { path = "hive-sock-client" } diff --git a/docs/tools/subagent.md b/docs/tools/subagent.md index 0de5845a..314bf224 100644 --- a/docs/tools/subagent.md +++ b/docs/tools/subagent.md @@ -29,7 +29,7 @@ as the daemon process is. A daemon restart stops whatever was running rather than adopting it. The durable record of a subagent's existence is claude's own on-disk session (`hive_claude::SessionStore`), which `continue` reattaches to independent of the daemon's own lifetime — a -restart loses the *in-flight turn*, not the subagent's history. +restart loses the _in-flight turn_, not the subagent's history. ## Compaction trade-off diff --git a/hive-subagent-mcp/src/session.rs b/hive-subagent-mcp/src/session.rs index 920d5ea7..c9bad27a 100644 --- a/hive-subagent-mcp/src/session.rs +++ b/hive-subagent-mcp/src/session.rs @@ -414,7 +414,10 @@ mod tests { fn reserve_does_not_cross_block_different_names() { let state = State::new(PathBuf::from("/dev/null")); assert!(state.reserve("a")); - assert!(state.reserve("b"), "unrelated names must not block each other"); + assert!( + state.reserve("b"), + "unrelated names must not block each other" + ); } #[test]