compare_version/
lib.rs

1mod cfg;
2mod compare;
3mod error;
4mod r#impl;
5mod r#type;
6
7/// Comparison functions
8pub use compare::{compare_versions, matches_version_range};
9/// Version error information
10pub use error::VersionError;
11/// Version comparison result
12pub use r#type::VersionComparison;