resolvo 0.11.1

Fast package resolver written in Rust (CDCL based SAT solving)
Documentation
1
2
3
4
5
6
7
8
9
10
//! Defines several helper functions and structs that make it easier to
//! implement a custom dependency provider.

mod indexed_set;
mod mapping;
mod pool;

pub use indexed_set::IndexedSet;
pub use mapping::{Mapping, MappingIter};
pub use pool::{IntoPackageName, PackageName, Pool, Solvable, VersionSet};