1
2
3
4
5
6
7
8
9
10
11
12
//! UUID type for the [RON crate](https://crates.io/ron-crdt).
//!
//! Handles parsing and serialization of UUIDs.

#![warn(missing_docs)]

extern crate chrono;
#[macro_use]
extern crate quickcheck;

mod uuid;
pub use uuid::UUID;