rust/src/libstd/std.rc

104 lines
1.6 KiB
Plaintext
Raw Normal View History

#[link(name = "std",
2012-07-11 11:09:08 -05:00
vers = "0.3",
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 20:17:30 -06:00
2012-04-05 19:30:26 -05:00
#[no_core];
#[allow(vecs_implicitly_copyable)];
2012-07-11 11:09:08 -05:00
use core(vers = "0.3");
2012-04-05 19:30:26 -05:00
import core::*;
export net, net_tcp, net_ip, net_url;
export uv, uv_ll, uv_iotask, uv_global_loop;
2012-08-02 13:26:52 -05:00
export c_vec, timer;
2012-08-16 18:45:42 -05:00
export sync, arc, comm;
2012-07-30 12:55:44 -05:00
export bitv, deque, fun_treemap, list, map;
export smallintmap, sort, treemap;
export rope, arena, par;
export ebml, dbg, getopts, json, rand, sha1, term, time, prettyprint;
export test, tempfile, serialization;
2012-06-07 20:12:50 -05:00
export cmp;
2012-07-05 16:39:08 -05:00
export base64;
export cell;
// General io and system-services modules
mod net;
mod net_ip;
2012-04-26 16:30:22 -05:00
mod net_tcp;
mod net_url;
// libuv modules
mod uv;
mod uv_ll;
mod uv_iotask;
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 timer;
mod cell;
// Concurrency
2012-08-26 20:14:39 -05:00
#[warn(non_camel_case_types)]
mod sync;
2012-08-26 20:28:36 -05:00
#[warn(non_camel_case_types)]
mod arc;
2012-08-14 16:17:27 -05:00
mod comm;
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;
2012-05-30 12:36:29 -05:00
mod par;
2012-06-07 20:12:50 -05:00
mod cmp;
2012-07-05 16:40:51 -05:00
mod base64;
#[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: