mirror of
https://github.com/ModernRelay/omnigraph.git
synced 2026-06-24 02:38:06 +02:00
Conflict resolutions: - cli/main.rs: keep the omnigraph_api_types import (branch extraction) and add main's omnigraph_cluster import; test-import list takes the branch's ResolvedCliGraph/is_remote_uri additions - Cargo manifests: union of deps — branch's config/queries/api-types crates plus main's cluster crate; all versions unified at 0.6.2 (new crates bumped from 0.6.1) - cli/Cargo.toml: omnigraph-server dep stays dropped (branch decision; CLI references it only in comments and the test harness binary spawn) - AGENTS.md: 0.6.2 + union crate list - cli-reference.md: branch's --graph/layered-config sections + main's cluster/repair rows - Cargo.lock regenerated cargo test --workspace --locked passes; scripts/check-agents-md.sh passes. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
37 lines
1.3 KiB
TOML
37 lines
1.3 KiB
TOML
[package]
|
|
name = "omnigraph-cli"
|
|
version = "0.6.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.6.2" }
|
|
omnigraph-compiler = { path = "../omnigraph-compiler", version = "0.6.2" }
|
|
omnigraph-cluster = { path = "../omnigraph-cluster", version = "0.6.2" }
|
|
omnigraph-policy = { path = "../omnigraph-policy", version = "0.6.2" }
|
|
omnigraph-config = { path = "../omnigraph-config", version = "0.6.2" }
|
|
omnigraph-queries = { path = "../omnigraph-queries", version = "0.6.2" }
|
|
omnigraph-api-types = { path = "../omnigraph-api-types", version = "0.6.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 = { workspace = true }
|
|
lance-index = { workspace = true }
|