swap hive-claude back to the published 0.1.1 release now that it's out

This commit is contained in:
damocles 2026-09-09 23:44:53 +02:00
commit 1ad7145cc5
4 changed files with 15 additions and 11 deletions

17
Cargo.lock generated
View file

@ -1256,7 +1256,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
dependencies = [ dependencies = [
"libc", "libc",
"windows-sys 0.52.0", "windows-sys 0.61.2",
] ]
[[package]] [[package]]
@ -1780,8 +1780,9 @@ dependencies = [
[[package]] [[package]]
name = "hive-claude" name = "hive-claude"
version = "0.1.0" version = "0.1.1"
source = "git+https://forge.darkest.space/hyperhive/hive-claude?branch=main#bacccc6580504d548387ffff7f0567be603e73a4" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7784a4aeb50369f2a49f052fd3bb28eee143ec6c8af8df806d3e375b045b0661"
dependencies = [ dependencies = [
"libc", "libc",
"serde", "serde",
@ -3614,7 +3615,7 @@ dependencies = [
"once_cell", "once_cell",
"socket2", "socket2",
"tracing", "tracing",
"windows-sys 0.52.0", "windows-sys 0.61.2",
] ]
[[package]] [[package]]
@ -4143,7 +4144,7 @@ dependencies = [
"errno", "errno",
"libc", "libc",
"linux-raw-sys", "linux-raw-sys",
"windows-sys 0.52.0", "windows-sys 0.61.2",
] ]
[[package]] [[package]]
@ -4202,7 +4203,7 @@ dependencies = [
"security-framework", "security-framework",
"security-framework-sys", "security-framework-sys",
"webpki-root-certs", "webpki-root-certs",
"windows-sys 0.52.0", "windows-sys 0.61.2",
] ]
[[package]] [[package]]
@ -4883,7 +4884,7 @@ dependencies = [
"getrandom 0.4.3", "getrandom 0.4.3",
"once_cell", "once_cell",
"rustix", "rustix",
"windows-sys 0.52.0", "windows-sys 0.61.2",
] ]
[[package]] [[package]]
@ -5751,7 +5752,7 @@ version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
dependencies = [ dependencies = [
"windows-sys 0.52.0", "windows-sys 0.61.2",
] ]
[[package]] [[package]]

View file

@ -85,7 +85,7 @@ hive-jobq = { path = "hive-jobq" }
hive-jobq-metrics = { path = "hive-jobq-metrics" } hive-jobq-metrics = { path = "hive-jobq-metrics" }
hive-jobq-wire = { path = "hive-jobq-wire" } hive-jobq-wire = { path = "hive-jobq-wire" }
hive-core-agent-sock = { path = "hive-core-agent-sock" } 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-host-sock = { path = "hive-host-sock" }
hive-priv-sock = { path = "hive-priv-sock" } hive-priv-sock = { path = "hive-priv-sock" }
hive-sock-client = { path = "hive-sock-client" } hive-sock-client = { path = "hive-sock-client" }

View file

@ -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 rather than adopting it. The durable record of a subagent's existence is
claude's own on-disk session (`hive_claude::SessionStore`), which claude's own on-disk session (`hive_claude::SessionStore`), which
`continue` reattaches to independent of the daemon's own lifetime — a `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 ## Compaction trade-off

View file

@ -414,7 +414,10 @@ mod tests {
fn reserve_does_not_cross_block_different_names() { fn reserve_does_not_cross_block_different_names() {
let state = State::new(PathBuf::from("/dev/null")); let state = State::new(PathBuf::from("/dev/null"));
assert!(state.reserve("a")); 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] #[test]