1 2 3 4 5 6 7 8 9 10 11 12
//! Package requirement parsing and handling. mod display; pub mod parser; pub mod types; pub use parser::RequirementParser; pub use types::{EnvCondition, PlatformCondition, Requirement, VersionConstraint}; #[cfg(test)] #[path = "tests.rs"] mod tests;