[package]
edition = "2024"
rust-version = "1.92"
name = "beyond-handoff"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-downtime atomic binary handoff for long-running daemons"
documentation = "https://docs.rs/beyond-handoff"
readme = "README.md"
keywords = [
"zero-downtime",
"handoff",
"supervisor",
"blue-green",
"deploy",
]
categories = [
"network-programming",
"os::unix-apis",
]
license = "MIT"
repository = "https://github.com/beyondoss/handoff"
resolver = "2"
[features]
crash-points = []
default = []
[lib]
name = "handoff"
path = "src/lib.rs"
[[test]]
name = "abort_pre_ready"
path = "tests/abort_pre_ready.rs"
[[test]]
name = "abort_seal_failed"
path = "tests/abort_seal_failed.rs"
[[test]]
name = "concurrent_handoff"
path = "tests/concurrent_handoff.rs"
[[test]]
name = "happy_path"
path = "tests/happy_path.rs"
[[test]]
name = "protocol_violations"
path = "tests/protocol_violations.rs"
[[test]]
name = "supervisor_crash"
path = "tests/supervisor_crash.rs"
[dependencies.libc]
version = "0.2"
[dependencies.nix]
version = "0.30"
features = [
"fs",
"socket",
"uio",
"process",
"signal",
]
default-features = false
[dependencies.postcard]
version = "1"
features = ["use-std"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]