1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! 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;
extern crate rand;

mod uuid;
pub use crate::uuid::UUID;