version_lp/
lib.rs

1//! library for easily working with version numbers in the SEM verison system (a.b.c)
2#[macro_use]
3extern crate serde_derive;
4extern crate regex;
5extern crate serde;
6
7mod versionpart;
8mod version;
9
10// passing through Version, since this will be the main interface in the library
11pub use version::Version;
12
13#[cfg(test)]
14extern crate serde_test;