Commit 666e359
committed
fix(conformance): repoint MedcareBridge import after #585 OGIT/OGAR split
#585 moved the OGAR-driven port bridges (UnifiedBridge harness +
MedcareBridge/OpenProjectBridge/RedmineBridge) from lance-graph-ontology
to lance-graph-ogar, but missed one consumer: the
lance-graph-consumer-conformance crate still did
`use lance_graph_ontology::bridges::MedcareBridge;` at lib.rs:93, which
now fails to compile (MedcareBridge no longer lives there).
Fix — the same transformation #585 applied to every other consumer:
- repoint the import to `lance_graph_ogar::bridges::MedcareBridge`
- add the `lance-graph-ogar` path dep to the crate's Cargo.toml
OgitBridge (lib.rs:222) and WoaBridge (lib.rs:331) are untouched — those
are OGIT-native legacy bridges that correctly stayed in
lance-graph-ontology. The callcenter `UnifiedBridge` (lib.rs:25) is an
unrelated type, also untouched.
No dependency cycle: conformance -> ogar -> ontology -> contract.1 parent 5a1f187 commit 666e359
2 files changed
Lines changed: 9 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
17 | 20 | | |
18 | 21 | | |
19 | 22 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
93 | | - | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
94 | 98 | | |
95 | 99 | | |
96 | 100 | | |
| |||
0 commit comments