[package] name = "omnigraph-cli" version = "0.4.2" 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.4.2" } omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.4.2" } omnigraph-server = { path = "../omnigraph-server", version = "0.4.2" } 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-index = { workspace = true }