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
#![cfg_attr(test, feature(plugin))]
#![cfg_attr(test, plugin(clippy))]
#![cfg_attr(feature = "no-std", no_std)]

#[cfg(feature = "bit-vec")]
extern crate bit_vec;

#[cfg(feature = "blist")]
extern crate blist;

#[cfg(feature = "interval-heap")]
extern crate interval_heap;

#[cfg(feature = "linked-hash-map")]
extern crate linked_hash_map;

#[cfg(all(feature = "no-std", feature = "collections"))]
extern crate collections;

extern crate len_trait;

mod traits;
pub use traits::*;

mod impls;