5/5 tests preserved. Synthetic nodes PK table via engine; cross_edges stays in custom_migrations because engine's TextPair is too minimal (id/weight/evidence/metadata columns needed). Flag for engine follow-up: TextPair DDL needs optional edge metadata columns — same gap flagged by M5 independently. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
26 lines
643 B
TOML
26 lines
643 B
TOML
[package]
|
|
name = "kei-crossdomain"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
description = "Typed-edge cross-domain store. Port of LBM internal/crossdomain."
|
|
|
|
[[bin]]
|
|
name = "kei-crossdomain"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "kei_crossdomain"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
kei-entity-store = { path = "../kei-entity-store" }
|
|
rusqlite = { version = "0.31", features = ["bundled"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
anyhow = "1"
|
|
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|