//! library for easily working with version numbers in the SEM verison system (a.b.c)
extern crate serde_derive;
extern crate regex;
extern crate serde;
// passing through Version, since this will be the main interface in the library
pub use Version;
extern crate serde_test;