mirror of
https://github.com/ModernRelay/omnigraph.git
synced 2026-06-21 02:28:07 +02:00
All six crate manifests + their path-dependency constraints, Cargo.lock, the regenerated openapi.json version metadata, AGENTS.md's surveyed version, and the v0.7.0 release notes (object-storage clusters, config-free --cluster serving, the operator config surface, keyed credentials, operator targeting/aliases, and the omnigraph.yaml deprecation stages). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
59 lines
1.8 KiB
TOML
59 lines
1.8 KiB
TOML
[package]
|
|
name = "omnigraph-engine"
|
|
version = "0.7.0"
|
|
edition = "2024"
|
|
description = "Runtime engine for the Omnigraph graph database."
|
|
license = "MIT"
|
|
repository = "https://github.com/ModernRelay/omnigraph"
|
|
homepage = "https://github.com/ModernRelay/omnigraph"
|
|
documentation = "https://docs.rs/omnigraph-engine"
|
|
|
|
[lib]
|
|
name = "omnigraph"
|
|
|
|
[features]
|
|
default = []
|
|
failpoints = ["dep:fail", "fail/failpoints"]
|
|
|
|
[dependencies]
|
|
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.7.0" }
|
|
omnigraph-policy = { path = "../omnigraph-policy", version = "0.7.0" }
|
|
lance = { workspace = true }
|
|
lance-datafusion = { workspace = true }
|
|
datafusion = { workspace = true }
|
|
lance-file = { workspace = true }
|
|
lance-index = { workspace = true }
|
|
lance-linalg = { workspace = true }
|
|
lance-namespace = { workspace = true }
|
|
lance-table = { workspace = true }
|
|
arrow-array = { workspace = true }
|
|
arrow-schema = { workspace = true }
|
|
arrow-ord = { workspace = true }
|
|
arrow-select = { workspace = true }
|
|
arrow-cast = { workspace = true }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
object_store = { workspace = true }
|
|
ulid = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
base64 = { workspace = true }
|
|
futures = { workspace = true }
|
|
tracing = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
regex = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
fail = { workspace = true, optional = true }
|
|
time = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
url = { workspace = true }
|
|
chrono = { workspace = true }
|
|
arc-swap = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.7.0" }
|
|
tokio = { workspace = true }
|
|
lance-namespace-impls = { workspace = true }
|
|
serial_test = "3"
|
|
proptest = "1"
|