ecdysis 1.0.0

A library for graceful restarts in Rust.
Documentation
[dependencies.bincode]
version = "1.3.3"

[dependencies.bytes]
version = "1.6.0"

[dependencies.derive_more]
features = ["display", "from"]
version = "1.0.0"

[dependencies.futures]
features = ["alloc"]
optional = true
version = "0.3"

[dependencies.log]
version = "0.4"

[dependencies.nix]
version = "0.26"

[dependencies.os_pipe]
version = "1.1.5"

[dependencies.parking_lot]
version = "0.12"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.socket2]
version = "0.5"

[dependencies.tempfile]
version = "3.10.1"

[dependencies.tokio]
features = ["fs", "macros", "net", "signal"]
optional = true
version = "1.37.0"

[dependencies.tokio-stream]
features = ["net", "signal", "sync"]
optional = true
version = "0.1"

[dependencies.tokio-util]
features = ["codec", "net"]
version = "0.7"

[dev-dependencies.env_logger]
version = "0.11"

[dev-dependencies.tokio]
features = ["io-util", "macros", "rt-multi-thread"]
version = "1.37.0"

[dev-dependencies.waitgroup]
version = "0.1"

[[example]]
name = "tokio_echo"
path = "examples/tokio_echo.rs"
required-features = ["systemd_sockets", "tokio_ecdysis"]

[features]
default = ["tokio_ecdysis"]
systemd = ["systemd_notify", "systemd_sockets"]
systemd_notify = ["tokio_ecdysis"]
systemd_sockets = ["tokio_ecdysis"]
tokio_ecdysis = ["dep:futures", "dep:tokio", "dep:tokio-stream"]

[lib]
name = "ecdysis"
path = "src/lib.rs"

[package]
authors = ["Argo Smart Routing & Orpheus Team at Cloudflare, Inc."]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A library for graceful restarts in Rust."
edition = "2021"
exclude = ["integration_tests"]
license = "Apache-2.0"
name = "ecdysis"
readme = "README.md"
repository = "https://github.com/cloudflare/ecdysis"
version = "1.0.0"

[package.metadata.release]
pre-release-commit-message = "Release {{version}}"
pre-release-hook = ["git-cliff", "-o", "RELEASE_NOTES", "--tag", "{{version}}"]
push = false

[target.'cfg(target_os = "linux")'.dependencies.tokio-seqpacket]
version = "0.7"