]> git.lizzy.rs Git - rust.git/blob - src/libcollections/lib.rs
Register new snapshots
[rust.git] / src / libcollections / lib.rs
1 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 /*!
12  * Collection types.
13  */
14
15 #[crate_id = "collections#0.10-pre"];
16 #[crate_type = "rlib"];
17 #[crate_type = "dylib"];
18 #[license = "MIT/ASL2"];
19 #[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
20       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
21       html_root_url = "http://static.rust-lang.org/doc/master")];
22
23 #[feature(macro_rules, managed_boxes, default_type_params, phase)];
24 #[allow(deprecated_owned_vector)]; // NOTE: remove after stage0
25
26 extern crate rand;
27
28 #[cfg(test)] extern crate test;
29 #[cfg(test)] #[phase(syntax, link)] extern crate log;
30
31 pub use bitv::Bitv;
32 pub use btree::BTree;
33 pub use deque::Deque;
34 pub use dlist::DList;
35 pub use enum_set::EnumSet;
36 pub use hashmap::{HashMap, HashSet};
37 pub use list::List;
38 pub use lru_cache::LruCache;
39 pub use priority_queue::PriorityQueue;
40 pub use ringbuf::RingBuf;
41 pub use smallintmap::SmallIntMap;
42 pub use treemap::{TreeMap, TreeSet};
43 pub use trie::{TrieMap, TrieSet};
44
45 pub mod bitv;
46 pub mod btree;
47 pub mod deque;
48 pub mod dlist;
49 pub mod enum_set;
50 pub mod hashmap;
51 pub mod list;
52 pub mod lru_cache;
53 pub mod priority_queue;
54 pub mod ringbuf;
55 pub mod smallintmap;
56 pub mod treemap;
57 pub mod trie;