1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
pub type Map<K, V> = std::collections::BTreeMap<K, V>;
pub type Set<T> = std::collections::BTreeSet<T>;

pub mod gen;
pub mod schema;

mod error;
mod make_schema;
#[macro_use]
mod macros;

pub use error::*;
pub use make_schema::MakeSchema;

pub use schemars_derive::*;