1extern crate rand; 2 3pub use self::collection::*; 4pub use self::card::{StandardCard, Suit}; 5pub use self::deck::*; 6 7mod collection; 8mod card; 9mod deck;