rust/src/libstd/std.rc

77 lines
1.1 KiB
Plaintext
Raw Normal View History

#[link(name = "std",
vers = "0.1",
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
url = "http://rust-lang.org/src/std")];
#[comment = "The Rust standard library"];
#[license = "MIT"];
#[crate_type = "lib"];
2012-03-07 20:17:30 -06:00
#[doc = "The Rust standard library"];
export net, uv;
2011-12-20 00:55:15 -06:00
export c_vec, four, tri, util;
export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap, ufind;
2012-03-20 21:06:04 -05:00
export rope, arena;
export ebml, dbg, getopts, json, rand, sha1, term, time, prettyprint;
export test, tempfile, serialization;
// General io and system-services modules
mod net;
mod uv;
2010-06-23 23:03:09 -05:00
// Utility modules
2011-11-23 04:15:04 -06:00
mod c_vec;
mod four;
mod tri;
mod util;
2010-06-23 23:03:09 -05:00
// Collections
2010-06-23 23:03:09 -05:00
mod bitv;
mod deque;
mod fun_treemap;
mod list;
mod map;
2011-11-04 12:38:42 -05:00
mod rope;
mod smallintmap;
mod sort;
mod treemap;
mod ufind;
// And ... other stuff
mod ebml;
mod dbg;
mod getopts;
mod json;
mod sha1;
2012-01-17 04:50:31 -06:00
mod md4;
mod tempfile;
mod term;
mod time;
mod prettyprint;
2012-03-20 21:06:04 -05:00
mod arena;
#[cfg(unicode)]
mod unicode;
// Compiler support modules
mod test;
mod serialization;
// Local Variables:
// mode: rust;
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End: