Rust library: version-compare
A Rust library to easily compare version numbers in any format, and test them against various comparison operators.
Comparing version numbers is hard. Especially when version numbers get really complex, or when their formatting differs.
This library helps you to easily compare any kind of version number with minimal code.
Two version numbers can be compared to each other, to get a relevant comparison operator (<
, ==
, >
),
or version numbers can be tested against any given comparison operator.
Along with version comparison, the library also features other useful tools.
For example: version numbers can be parsed to inspect a version number by it's bare numeric or text based parts.
Inspired by PHPs version_compare().
Note: This library is still a work in progress. See the list below for a list of currently available and future features.
Version formats
A list of version number examples that are parsed successfully:
1
3.10.4.1
1.2.alpha
1.2.dev.4
. -32 . 1
(undefined formats)MyApp 3.2.0 / build 0932
(complex formats, not fully functional yet)- Many more and support for custom formats to come...
Semver
Version number formats like semver try to make version numbers consistent and manageable, there are too many projects however that don't follow such format.
Version-compare makes working with them easy and supports semver formats out of the box with zero configuration.
Features
- Compare two version numbers, get:
<
,==
or>
. - Compare two version numbers against any comparison operator, get:
true
orfalse
. - Parse complex and undefined version number formats.
- Static, single-statement methods available.
The following features will be added in a later version:
- Support for text parts in version strings.
- Version manifest, to specify detailed version number constraints.
- Version ranges, and tests against them.
- Support for operators in version strings, npm-style, and tests against them.
- Batch comparisons.
Example
This library is very easy to use. Here's a basic usage example:
Cargo.toml:
[]
= "0.0.10"
extern crate version_compare;
use ;
Check out the examples directory for more complete examples.
Builds
This library is automatically build and tested for each commit using CI services.
Service | Platforms | Branch | Build Status | |
---|---|---|---|---|
Travis CI | Linux, macOS | master | View Status | |
Travis CI | Linux, macOS | last commit | View Status | |
AppVeyor | Windows | master | View Status | |
AppVeyor | Windows | last commit | View Status |
License
This project is released under the MIT license. Check out the LICENSE file for more information.