setver

Crates.iosetver
lib.rssetver
version0.3.0
sourcesrc
created_at2022-05-18 12:18:17.42146
updated_at2022-10-02 21:53:09.325695
descriptionSetVer versioning scheme implementation in Rust
homepage
repositoryhttps://github.com/kleinesfilmroellchen/rust-setver
max_upload_size
id588918
size17,737
kleines Filmröllchen (kleinesfilmroellchen)

documentation

README

rust-setver

SetVer implementation for Rust.

This is the setver crate which allows your Rust application or library to comprehend SetVer version specifications. SetVer is a versioning scheme created by Olivia Palmu and based on set theory concepts. It is fantastically simple and powerful, yet entirely unpractical. See the SetVer repository above if you want to learn more.

Example

use setver::SetVersion;
let first_version: SetVersion = "{}".parse().unwrap();
let second_version: SetVersion = "{{}}".parse().unwrap();
assert!(first_version.is_subset(&second_version));

Installation & Usage

Add it to your project with Cargo:

cargo add setver

Read the documentation for more information about how to use setver.

Changelog

0.1.0

Initial release.

0.2.0

Add the add_child_version function which allows for easier building of related SetVers.

License

Only MIT right now, I can't be bothered with Apache at the moment.

Commit count: 23

cargo fmt