1extern crate num_traits; 2 3#[cfg(test)] 4#[macro_use] 5extern crate quickcheck; 6 7extern crate rand; 8 9mod ternary; 10pub use ternary::{Priority, TernaryTrie}; 11 12#[cfg(test)] 13mod test;