[package]
edition = "2021"
name = "exocortex-cluster"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Exocortex cluster coherence: Chubby-style leases with epoch fencing, HMAC-signed invalidation envelopes, and the SSE change feed."
readme = false
license = "AGPL-3.0-or-later"
repository = "https://github.com/memory-graph/exocortex"
[features]
integration = []
[lib]
name = "exocortex_cluster"
path = "src/lib.rs"
[[test]]
name = "change_log"
path = "tests/change_log.rs"
[[test]]
name = "cluster"
path = "tests/cluster.rs"
[[test]]
name = "cross_node"
path = "tests/cross_node.rs"
[[test]]
name = "rolling_upgrade"
path = "tests/rolling_upgrade.rs"
[[test]]
name = "sse_e2e"
path = "tests/sse_e2e.rs"
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.7"
features = [
"macros",
"http2",
]
[dependencies.chitchat]
version = "0.9"
[dependencies.eventsource-client]
version = "0.13"
[dependencies.exocortex-kernel]
version = "0.4.0"
[dependencies.exocortex-storage]
version = "0.4.0"
[dependencies.exocortex-wire]
version = "0.4.0"
[dependencies.futures]
version = "0.3"
[dependencies.metrics]
version = "0.24"
[dependencies.redis]
version = "0.27"
features = [
"tokio-comp",
"aio",
]
[dependencies.serde_json]
version = "1"
[dependencies.smol_str]
version = "0.3"
features = ["serde"]
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.chrono]
version = "0.4"
features = ["serde"]
[dev-dependencies.tokio]
version = "1.40"
features = ["full"]
[dev-dependencies.tonic]
version = "0.12"
features = [
"tls",
"tls-native-roots",
"gzip",
]