1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#![cfg_attr(feature= "use_regex_crate", use_regex_crate)]
#![cfg_attr(feature= "use_uuid_crate", use_uuid_crate)]
#![cfg_attr(feature= "use_url_crate", use_url_crate)]

extern crate itertools;

#[macro_use]
extern crate shrinkwraprs;

#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate serde_bytes;
extern crate byteorder;
extern crate ordered_float;

#[cfg(use_regex_crate)]
extern crate regex as _regex;

#[cfg(use_uuid_crate)]
extern crate uuid as _uuid;

#[cfg(use_url_crate)]
extern crate url;

// extern crate chrono;

mod imp;
pub mod error;
pub mod ser;
pub mod de;
pub mod value;
pub mod types;
pub mod wasm;

pub use types::{
    inst,
    uuid,
    uri,
    regex,
    sym,
    key,
    typed_arrays,
    set
};