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"
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]]

View file

@ -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" }

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
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

View file

@ -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]