rust/src/libstd/std.rc

118 lines
2.0 KiB
Plaintext
Raw Normal View History

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