mirror of
https://github.com/ModernRelay/omnigraph.git
synced 2026-06-12 01:45:14 +02:00
Some checks failed
CI / Classify Changes (push) Has been cancelled
CI / Check AGENTS.md Links (push) Has been cancelled
Release Edge / Prepare edge release (push) Has been cancelled
CI / Test Workspace (push) Has been cancelled
CI / Test omnigraph-server --features aws (push) Has been cancelled
CI / RustFS S3 Integration (push) Has been cancelled
Release Edge / Build edge omnigraph-linux-x86_64 (push) Has been cancelled
Release Edge / Build edge omnigraph-macos-arm64 (push) Has been cancelled
29 lines
876 B
TOML
29 lines
876 B
TOML
[package]
|
|
name = "omnigraph-compiler"
|
|
version = "0.6.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 }
|