[package]
edition = "2024"
name = "omnigraph-engine"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime engine for the Omnigraph graph database."
homepage = "https://github.com/ModernRelay/omnigraph"
documentation = "https://docs.rs/omnigraph-engine"
readme = false
license = "MIT"
repository = "https://github.com/ModernRelay/omnigraph"
resolver = "2"
[features]
default = []
failpoints = [
"dep:fail",
"fail/failpoints",
]
[lib]
name = "omnigraph"
path = "src/lib.rs"
[[example]]
name = "bench_expand"
path = "examples/bench_expand.rs"
[[test]]
name = "aggregation"
path = "tests/aggregation.rs"
[[test]]
name = "branching"
path = "tests/branching.rs"
[[test]]
name = "changes"
path = "tests/changes.rs"
[[test]]
name = "consistency"
path = "tests/consistency.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[[test]]
name = "export"
path = "tests/export.rs"
[[test]]
name = "failpoints"
path = "tests/failpoints.rs"
[[test]]
name = "lance_version_columns"
path = "tests/lance_version_columns.rs"
[[test]]
name = "lifecycle"
path = "tests/lifecycle.rs"
[[test]]
name = "point_in_time"
path = "tests/point_in_time.rs"
[[test]]
name = "runs"
path = "tests/runs.rs"
[[test]]
name = "s3_storage"
path = "tests/s3_storage.rs"
[[test]]
name = "schema_apply"
path = "tests/schema_apply.rs"
[[test]]
name = "search"
path = "tests/search.rs"
[[test]]
name = "traversal"
path = "tests/traversal.rs"
[dependencies.arrow-array]
version = "57"
[dependencies.arrow-cast]
version = "57"
features = ["prettyprint"]
[dependencies.arrow-ord]
version = "57"
[dependencies.arrow-schema]
version = "57"
[dependencies.arrow-select]
version = "57"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.fail]
version = "0.5"
optional = true
[dependencies.futures]
version = "0.3"
[dependencies.lance]
version = "4.0.0"
features = ["aws"]
default-features = false
[dependencies.lance-datafusion]
version = "4.0.0"
[dependencies.lance-file]
version = "4.0.0"
[dependencies.lance-index]
version = "4.0.0"
[dependencies.lance-linalg]
version = "4.0.0"
[dependencies.lance-namespace]
version = "4.0.0"
[dependencies.lance-table]
version = "4.0.0"
[dependencies.object_store]
version = "0.12.5"
features = ["aws"]
default-features = false
[dependencies.omnigraph-compiler]
version = "0.3.1"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = ["formatting"]
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"net",
"signal",
"sync",
]
[dependencies.tracing]
version = "0.1"
[dependencies.ulid]
version = "1"
[dependencies.url]
version = "2"
[dev-dependencies.lance-namespace-impls]
version = "4.0.0"
[dev-dependencies.omnigraph-compiler]
version = "0.3.1"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"net",
"signal",
"sync",
]