rust/src/libstd/std.rc

86 lines
1.3 KiB
Plaintext
Raw Normal View History

#[link(name = "std",
2012-03-22 17:25:02 -05:00
vers = "0.2",
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
url = "https://github.com/mozilla/rust/tree/master/src/libstd")];
#[comment = "The Rust standard library"];
#[license = "MIT"];
#[crate_type = "lib"];
2012-03-07 20:17:30 -06:00
#[doc = "The Rust standard library"];
2012-04-05 19:30:26 -05:00
#[no_core];
use core(vers = "0.2");
import core::*;
export net, net_tcp;
export uv, uv_ll, uv_hl, uv_global_loop;
export c_vec, util, timer;
2012-05-12 21:29:02 -05:00
export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap;
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 net_ip;
2012-04-26 16:30:22 -05:00
mod net_tcp;
// libuv modules
mod uv;
mod uv_ll;
2012-04-02 13:03:45 -05:00
mod uv_hl;
mod uv_global_loop;
2010-06-23 23:03:09 -05:00
// Utility modules
2011-11-23 04:15:04 -06:00
mod c_vec;
mod util;
mod timer;
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;
// 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: