d-engine-server 0.2.2

Production-ready Raft consensus engine server and runtime
Documentation
[[bench]]
harness = false
name = "lease_performance"
path = "benches/lease_performance.rs"

[[bench]]
harness = false
name = "state_machine"
path = "benches/state_machine.rs"
required-features = ["watch"]

[[bench]]
harness = false
name = "ttl"
path = "benches/ttl.rs"

[[bench]]
harness = false
name = "watch_overhead"
path = "benches/watch_overhead.rs"
required-features = ["watch", "rocksdb"]

[dependencies.arc-swap]
version = "1.7.1"

[dependencies.async-trait]
version = "0.1"

[dependencies.bincode]
version = "1.3"

[dependencies.bytes]
features = ["serde"]
version = "1.10"

[dependencies.config]
default-features = false
features = ["toml"]
version = "0.14.0"

[dependencies.crc32fast]
version = "1.4.2"

[dependencies.crossbeam]
version = "0.8"

[dependencies.crossbeam-skiplist]
version = "0.1"

[dependencies.d-engine-client]
version = "0.2.2"

[dependencies.d-engine-core]
version = "0.2.2"

[dependencies.d-engine-proto]
version = "0.2.2"

[dependencies.dashmap]
version = "6.1"

[dependencies.futures]
version = "0.3.30"

[dependencies.http-body]
version = "1.0"

[dependencies.http-body-util]
version = "0.1.3"

[dependencies.metrics]
features = []
version = "0.24"

[dependencies.parking_lot]
version = "0.12.3"

[dependencies.prost]
default-features = false
version = "0.13"

[dependencies.rcgen]
features = ["pem"]
version = "0.13"

[dependencies.rocksdb]
optional = true
version = "0.24.0"

[dependencies.serde]
default-features = false
features = ["derive"]
version = "1.0"

[dependencies.tempfile]
version = "3.19.1"

[dependencies.tokio]
features = ["macros", "time", "signal", "fs", "sync"]
version = "1"

[dependencies.tokio-stream]
version = "0.1.16"

[dependencies.tokio-util]
version = "0.7.11"

[dependencies.tonic]
features = ["gzip", "tls"]
version = "0.12.3"

[dependencies.tonic-health]
version = "0.12.3"

[dependencies.tracing]
version = "0.1.41"

[dev-dependencies.astral-tokio-tar]
version = "0.5"

[dev-dependencies.async-compression]
features = ["tokio", "gzip"]
version = "0.4"

[dev-dependencies.criterion]
features = ["html_reports", "async_tokio"]
version = "0.5"

[dev-dependencies.d-engine-core]
features = ["__test_support"]
version = "0.2.2"

[dev-dependencies.mockall]
version = "0.12.1"

[dev-dependencies.nanoid]
version = "0.4.0"

[dev-dependencies.serial_test]
version = "3.2.0"

[dev-dependencies.temp-env]
version = "0.3.6"

[dev-dependencies.tokio]
features = ["test-util", "process"]
version = "1"

[dev-dependencies.tokio-stream]
version = "0.1.16"

[dev-dependencies.tracing-test]
version = "0.2"

[dev-dependencies.uuid]
features = ["v4"]
version = "1"

[features]
rocksdb = ["dep:rocksdb"]
watch = ["d-engine-core/watch"]

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

[package]
authors = ["Joshua Chi <joshokn@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "concurrency", "network-programming"]
description = "Production-ready Raft consensus engine server and runtime"
edition = "2024"
homepage = "https://github.com/deventlab/d-engine"
keywords = ["raft", "consensus", "distributed-systems", "async"]
license = "MIT OR Apache-2.0"
name = "d-engine-server"
publish = true
readme = "README.md"
repository = "https://github.com/deventlab/d-engine"
resolver = "2"
version = "0.2.2"

[package.metadata.docs.rs]
features = ["rocksdb", "watch"]
rustdoc-args = ["--cfg", "docsrs"]

[package.metadata.release]
tag = false

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"