/forgiving-semver

Forgiving semantic version parsing and comparison. Fork of https://github.com/steveklabnik/semver.

Primary LanguageRustApache License 2.0Apache-2.0

semver

Semantic version parsing and comparison. Fork of the semver crate which adds support for parsing of versions outside of the semver spec, but popular in the wild. See issue 219.

Namely we extend the parent crate to support:

"x.y" => "x.y.0"
"x" => "x.0.0"

For more information about every other aspect see the parent crate.

Installation

To use forgiving_semver, add this to your [dependencies] section:

forgiving_semver = "0.11.0"