sinter_resolve/lib.rs
1mod proto_service_bindings;
2mod resolver;
3mod scip;
4
5pub use proto_service_bindings::proto_service_edges;
6pub use resolver::{
7 Binding, Index, ResolutionStats, dynamic_edges, qualified_of, resolve, resolve_boundary,
8};
9pub use scip::{
10 ScipError, ScipResolution, load_index, merge_index_files, prefix_index_paths,
11 resolve_with_index,
12};