mirror of
https://github.com/ModernRelay/omnigraph.git
synced 2026-06-15 01:55:13 +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>
29 lines
876 B
TOML
29 lines
876 B
TOML
[package]
|
|
name = "omnigraph-compiler"
|
|
version = "0.7.0"
|
|
edition = "2024"
|
|
description = "Schema/query compiler for Omnigraph. Zero Lance dependency."
|
|
license = "MIT"
|
|
repository = "https://github.com/ModernRelay/omnigraph"
|
|
homepage = "https://github.com/ModernRelay/omnigraph"
|
|
documentation = "https://docs.rs/omnigraph-compiler"
|
|
|
|
[dependencies]
|
|
arrow-array = { workspace = true }
|
|
arrow-ipc = { workspace = true }
|
|
arrow-schema = { workspace = true }
|
|
arrow-select = { workspace = true }
|
|
arrow-cast = { workspace = true }
|
|
arrow-ord = { workspace = true }
|
|
pest = { workspace = true }
|
|
pest_derive = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
ahash = { workspace = true }
|
|
tokio = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true }
|