#semver #compare #version #rust

compare_version

A Rust library for comparing semantic versioning strings and checking version compatibility

12 releases

Uses new Rust 2024

0.3.1 Mar 23, 2025
0.3.0 Mar 20, 2025
0.2.8 Mar 11, 2025
0.2.6 Feb 9, 2025
0.1.1 Nov 1, 2024

#472 in Development tools

Download history 46/week @ 2024-12-09 2/week @ 2025-01-06 127/week @ 2025-01-13 195/week @ 2025-01-20 103/week @ 2025-02-03 58/week @ 2025-02-10 8/week @ 2025-02-17 107/week @ 2025-02-24 58/week @ 2025-03-03 127/week @ 2025-03-10 178/week @ 2025-03-17 62/week @ 2025-03-24

530 downloads per month

MIT license

14KB
212 lines

Compare version

Official Documentation

A Rust library for comparing semantic versioning strings and checking version compatibility.

Features

  • Version Comparison: Compare two semantic versioning strings to determine their order (greater, less, equal).
  • Version Range Matching: Check if a specific version matches a specified range using ^ and ~ notation.
  • Pre-release Support: Handle pre-release versions with proper comparison logic.
  • Error Handling: Comprehensive error types to handle version parsing and range issues gracefully.

Installation

To use this crate, you can run cmd:

cargo add compare_version

Examples

use compare_version::*;
let result = compare_versions("1.2.3", "1.2.4");
assert_eq!(result, Ok(VersionComparison::Less));
let matches = matches_version_range("1.2.3", "^1.2.0");
assert_eq!(matches, Ok(true));
let matches = matches_version_range("1.2.3", "~1.2.4");
assert_eq!(matches, Ok(false));

License

This project is licensed under the MIT License. See the LICENSE file for details.

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

Contact

For any inquiries, please reach out to the author at ltpp-universe root@ltpp.vip.

No runtime deps