Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion crates/lance-graph-consumer-conformance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ publish = false # internal CI gate — not published to crates.io
[dependencies]
# The conformance harness imports UnifiedBridge, AuditChain, SuperDomain etc.
lance-graph-callcenter = { path = "../lance-graph-callcenter" }
# NamespaceBridge trait + bridge implementations (MedcareBridge, OgitBridge, WoaBridge)
# NamespaceBridge trait + OGIT-native legacy bridges (OgitBridge, WoaBridge).
lance-graph-ontology = { path = "../lance-graph-ontology" }
# OGAR-driven port bridges (MedcareBridge / HealthcarePort) — moved out of
# lance-graph-ontology in #585 to restore OGIT/OGAR separation of concerns.
lance-graph-ogar = { path = "../lance-graph-ogar" }
# fnv1a_str, PrefetchDepth
lance-graph-contract = { path = "../lance-graph-contract" }
# Policy, Role, PermissionSpec for per-consumer test fixtures
Expand Down
6 changes: 5 additions & 1 deletion crates/lance-graph-consumer-conformance/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,11 @@ mod tests {

#[test]
fn medcare_bridge_conforms() {
use lance_graph_ontology::bridges::MedcareBridge;
// MedcareBridge moved to the OGAR crate in #585 (it's codebook-/
// PortSpec-driven via `HealthcarePort`, so it belongs to OGAR, not
// OGIT). OgitBridge / WoaBridge below stay in lance-graph-ontology —
// those are OGIT-native legacy bridges.
use lance_graph_ogar::bridges::MedcareBridge;

let registry = seed_medcare_registry();
let bridge = Arc::new(MedcareBridge::new(registry).unwrap());
Expand Down
Loading