mirror of
https://github.com/ModernRelay/omnigraph.git
synced 2026-06-27 02:39:38 +02:00
Patch release over v0.7.1: write-path latency reductions (#288 direct table opener, #298 schema-once + open-each-table-once) and three correctness fixes on the maintenance and recovery paths (#297 optimize survives a cross-process write race, #291 optimize compacts the internal metadata tables + non-destructive auto_cleanup strip, #296 recovery converges under a concurrent manifest advance). No breaking changes, no on-disk format change, no migration. Version coherence: all 7 crate manifests + path-dep constraints, Cargo.lock, openapi.json, and the AGENTS.md surveyed version bumped 0.7.1 -> 0.7.2. Build green under --locked; OpenAPI drift check green.
35 lines
1.3 KiB
TOML
35 lines
1.3 KiB
TOML
[package]
|
|
name = "omnigraph-cluster"
|
|
version = "0.7.2"
|
|
edition = "2024"
|
|
description = "Cluster configuration validation, planning, and config-only apply for Omnigraph."
|
|
license = "MIT"
|
|
repository = "https://github.com/ModernRelay/omnigraph"
|
|
homepage = "https://github.com/ModernRelay/omnigraph"
|
|
documentation = "https://docs.rs/omnigraph-cluster"
|
|
|
|
[features]
|
|
# Fault-injection hooks for the apply protocol (crash-mid-apply, CAS-race
|
|
# tests), including cluster/engine boundary failures.
|
|
failpoints = ["dep:fail", "fail/failpoints", "omnigraph/failpoints"]
|
|
|
|
[dependencies]
|
|
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.7.2" }
|
|
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.7.2" }
|
|
fail = { workspace = true, optional = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
time = { workspace = true }
|
|
# Runtime handle only — best-effort async lock release in
|
|
# StateLockGuard::drop on object-store backends (cluster commands always
|
|
# run inside the caller's tokio runtime).
|
|
tokio = { workspace = true }
|
|
ulid = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
serial_test = "3"
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true }
|