# `hive-forge-notify` — long-running per-agent Forgejo notification # poller. Was a `tokio::spawn` inside the `hive-agent` serve loop; it is # its own process now so a harness restart (or a claude-side stall) does # not take forge notifications down with it, and so its dependency tree # (forgejo-api, reqwest, time, url) is not linked into the serve-loop # binary. Talks to the harness only over the in-agent todo socket. [package] name = "hive-forge-notify" edition.workspace = true version.workspace = true readme = "README.md" [lints] workspace = true [dependencies] anyhow.workspace = true forgejo-api.workspace = true hive-agent-sock.workspace = true hive-sock-client.workspace = true reqwest.workspace = true serde.workspace = true serde_json.workspace = true time.workspace = true tokio.workspace = true tracing.workspace = true tracing-subscriber.workspace = true url.workspace = true