mirror of
https://github.com/ModernRelay/omnigraph.git
synced 2026-06-24 02:38:06 +02:00
Move queries.rs (stored-query registry + validation) into omnigraph-queries (deps: omnigraph-config, omnigraph-compiler; no serde). Repoint crate::config -> omnigraph_config. The two catalog-projection tests (which exercise api::query_catalog_entry) are removed here and relocated to omnigraph-api-types in the next commit, where that function lives. Server aliases via 'pub use omnigraph_queries as queries;'. 16 queries tests pass; server+cli compile. No behavior change.
16 lines
551 B
TOML
16 lines
551 B
TOML
[package]
|
|
name = "omnigraph-queries"
|
|
version = "0.6.1"
|
|
edition = "2024"
|
|
description = "Stored-query registry and validation for the Omnigraph graph database."
|
|
license = "MIT"
|
|
repository = "https://github.com/ModernRelay/omnigraph"
|
|
homepage = "https://github.com/ModernRelay/omnigraph"
|
|
documentation = "https://docs.rs/omnigraph-queries"
|
|
|
|
[dependencies]
|
|
omnigraph-config = { path = "../omnigraph-config", version = "0.6.1" }
|
|
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.6.1" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|