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
#![feature(associated_type_defaults, plugin)]
#![allow(mutable_transmutes)]

#![cfg_attr(test, feature(plugin))]
#![cfg_attr(feature = "dev", plugin(clippy))]
#![cfg_attr(not(feature = "dev"), allow(unknown_lints))]

extern crate vec_map;
extern crate rand;

#[cfg(test)]
extern crate quickcheck;

pub mod bag;
pub mod stack;
pub mod queue;
pub mod deque;
pub mod graph;
pub mod priority_queue;
pub mod hashst;
pub mod tries;

pub mod suffix_tree;
pub mod splay_tree;

pub mod rope;

pub mod skip_list;

pub mod rbtree;

pub mod primitive;
pub mod kdtree;

pub mod union_find;

pub mod prelude;
pub use prelude::*;