rust/src/libstd/std.rc

92 lines
1.4 KiB
Plaintext
Raw Normal View History

#[link(name = "std",
2012-03-22 15:25:02 -07: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"];
//! The Rust standard library
2012-03-07 18:17:30 -08:00
2012-04-05 17:30:26 -07:00
#[no_core];
#[warn(no_vecs_not_implicitly_copyable)];
2012-04-05 17:30:26 -07:00
use core(vers = "0.2");
import core::*;
export net, net_tcp, net_ip;
export uv, uv_ll, uv_iotask, uv_global_loop;
export c_vec, util, timer;
2012-05-12 19:29:02 -07:00
export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap;
export rope, arena, par;
export ebml, dbg, getopts, json, rand, sha1, term, time, prettyprint;
export test, tempfile, serialization;
2012-06-07 18:12:50 -07:00
export cmp;
2012-07-05 14:39:08 -07:00
export base64;
// General io and system-services modules
mod net;
mod net_ip;
2012-04-26 14:30:22 -07:00
mod net_tcp;
// libuv modules
mod uv;
mod uv_ll;
mod uv_iotask;
mod uv_global_loop;
2010-06-23 21:03:09 -07:00
// Utility modules
2011-11-23 05:15:04 -05:00
mod c_vec;
mod util;
mod timer;
2010-06-23 21:03:09 -07:00
// Collections
2010-06-23 21:03:09 -07:00
mod bitv;
mod deque;
mod fun_treemap;
mod list;
mod map;
2011-11-04 18:38:42 +01: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 11:50:31 +01:00
mod md4;
mod tempfile;
mod term;
mod time;
mod prettyprint;
2012-03-20 19:06:04 -07:00
mod arena;
2012-05-30 10:36:29 -07:00
mod par;
2012-06-07 18:12:50 -07:00
mod cmp;
#[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: