1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! library for easily working with version numbers in the SEM verison system (a.b.c)
#[macro_use]
extern crate serde_derive;
extern crate regex;
extern crate serde;

mod versionpart;
mod version;

// passing through Version, since this will be the main interface in the library
pub use version::Version;

#[cfg(test)]
extern crate serde_test;