mirror of
https://github.com/ModernRelay/omnigraph.git
synced 2026-06-09 01:35:18 +02:00
Repoint CLI imports to the extracted crates: api DTOs -> omnigraph-api-types, QueryRegistry/check -> omnigraph-queries, config types -> omnigraph-config, and Policy* -> omnigraph-policy directly (no longer via the server re-export shim). Remove omnigraph-server from the CLI manifest. The CLI no longer pulls Axum/tower/utoipa-axum: 'cargo tree -p omnigraph-cli -i omnigraph-server' and '-i axum' both report not-in-graph. No behavior change (CLI compiles; no test churn — CLI tests import none of the moved symbols).
36 lines
1.2 KiB
TOML
36 lines
1.2 KiB
TOML
[package]
|
|
name = "omnigraph-cli"
|
|
version = "0.6.1"
|
|
edition = "2024"
|
|
description = "CLI for the Omnigraph graph database."
|
|
license = "MIT"
|
|
repository = "https://github.com/ModernRelay/omnigraph"
|
|
homepage = "https://github.com/ModernRelay/omnigraph"
|
|
documentation = "https://docs.rs/omnigraph-cli"
|
|
|
|
[[bin]]
|
|
name = "omnigraph"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
omnigraph = { package = "omnigraph-engine", path = "../omnigraph", version = "0.6.1" }
|
|
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.6.1" }
|
|
omnigraph-policy = { path = "../omnigraph-policy", version = "0.6.1" }
|
|
omnigraph-config = { path = "../omnigraph-config", version = "0.6.1" }
|
|
omnigraph-queries = { path = "../omnigraph-queries", version = "0.6.1" }
|
|
omnigraph-api-types = { path = "../omnigraph-api-types", version = "0.6.1" }
|
|
clap = { workspace = true }
|
|
color-eyre = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
tokio = { workspace = true }
|
|
reqwest = { workspace = true, features = ["blocking"] }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2"
|
|
predicates = "3"
|
|
serde_json = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
lance = { workspace = true }
|
|
lance-index = { workspace = true }
|