File tree Expand file tree Collapse file tree
crates/lance-graph-consumer-conformance Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,8 +12,11 @@ publish = false # internal CI gate — not published to crates.io
1212[dependencies ]
1313# The conformance harness imports UnifiedBridge, AuditChain, SuperDomain etc.
1414lance-graph-callcenter = { path = " ../lance-graph-callcenter" }
15- # NamespaceBridge trait + bridge implementations (MedcareBridge, OgitBridge, WoaBridge)
15+ # NamespaceBridge trait + OGIT-native legacy bridges ( OgitBridge, WoaBridge).
1616lance-graph-ontology = { path = " ../lance-graph-ontology" }
17+ # OGAR-driven port bridges (MedcareBridge / HealthcarePort) — moved out of
18+ # lance-graph-ontology in #585 to restore OGIT/OGAR separation of concerns.
19+ lance-graph-ogar = { path = " ../lance-graph-ogar" }
1720# fnv1a_str, PrefetchDepth
1821lance-graph-contract = { path = " ../lance-graph-contract" }
1922# Policy, Role, PermissionSpec for per-consumer test fixtures
Original file line number Diff line number Diff line change @@ -90,7 +90,11 @@ mod tests {
9090
9191 #[ test]
9292 fn medcare_bridge_conforms ( ) {
93- use lance_graph_ontology:: bridges:: MedcareBridge ;
93+ // MedcareBridge moved to the OGAR crate in #585 (it's codebook-/
94+ // PortSpec-driven via `HealthcarePort`, so it belongs to OGAR, not
95+ // OGIT). OgitBridge / WoaBridge below stay in lance-graph-ontology —
96+ // those are OGIT-native legacy bridges.
97+ use lance_graph_ogar:: bridges:: MedcareBridge ;
9498
9599 let registry = seed_medcare_registry ( ) ;
96100 let bridge = Arc :: new ( MedcareBridge :: new ( registry) . unwrap ( ) ) ;
You can’t perform that action at this time.
0 commit comments