omnigraph/crates/omnigraph-cli/Cargo.toml

33 lines
993 B
TOML
Raw Normal View History

2026-04-10 20:49:41 +03:00
[package]
name = "omnigraph-cli"
2026-05-10 14:02:28 +00:00
version = "0.4.2"
2026-04-10 20:49:41 +03:00
edition = "2024"
description = "CLI for the Omnigraph graph database."
license = "MIT"
2026-04-14 20:13:00 +03:00
repository = "https://github.com/ModernRelay/omnigraph"
homepage = "https://github.com/ModernRelay/omnigraph"
documentation = "https://docs.rs/omnigraph-cli"
2026-04-10 20:49:41 +03:00
[[bin]]
name = "omnigraph"
path = "src/main.rs"
[dependencies]
2026-05-10 14:02:28 +00:00
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" }
2026-04-10 20:49:41 +03:00
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 }