mirror of
https://github.com/ModernRelay/omnigraph.git
synced 2026-06-24 02:38:06 +02:00
Patch release over v0.7.0: three correctness fixes (#283 camelCase filters, #284 cluster-apply crash-loop, #277 branch-merge OOM on embedding tables), the #280 queries-list catalog-metadata improvement, and the #268 warm-read perf fix. No breaking changes, no on-disk format change, no migration. Version coherence: all 7 crate manifests + path-dep constraints, Cargo.lock, openapi.json, and AGENTS.md surveyed version bumped 0.7.0 -> 0.7.1. Full workspace gate green (1472 tests). Claude-Session: https://claude.ai/code/session_01FQ1Hf4eXLsJmeLUkTYBEw7 Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
34 lines
1.2 KiB
TOML
34 lines
1.2 KiB
TOML
[package]
|
|
name = "omnigraph-cluster"
|
|
version = "0.7.1"
|
|
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.1" }
|
|
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.7.1" }
|
|
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]
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true }
|