rust/src/libstd/std.rc

155 lines
2.5 KiB
Plaintext
Raw Normal View History

2012-09-19 18:52:46 -05:00
/*!
The Rust standard library.
The Rust standand library provides a number of useful features that are
not required in or otherwise suitable for the core library.
*/
#[link(name = "std",
2012-08-30 16:05:49 -05:00
vers = "0.4",
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
2012-04-05 19:30:26 -05:00
#[no_core];
#[legacy_modes];
#[legacy_exports];
#[allow(vecs_implicitly_copyable)];
#[deny(non_camel_case_types)];
extern mod core(vers = "0.4");
2012-09-05 13:46:25 -05:00
use core::*;
2012-04-05 19:30:26 -05:00
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
#[legacy_exports]
mod net;
#[legacy_exports]
mod net_ip;
#[legacy_exports]
2012-04-26 16:30:22 -05:00
mod net_tcp;
#[legacy_exports]
mod net_url;
// libuv modules
#[legacy_exports]
mod uv;
#[legacy_exports]
mod uv_ll;
#[legacy_exports]
mod uv_iotask;
#[legacy_exports]
mod uv_global_loop;
2010-06-23 23:03:09 -05:00
// Utility modules
#[legacy_exports]
2011-11-23 04:15:04 -06:00
mod c_vec;
#[legacy_exports]
mod timer;
#[legacy_exports]
mod cell;
// Concurrency
#[legacy_exports]
mod sync;
#[legacy_exports]
mod arc;
#[legacy_exports]
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
#[legacy_exports]
mod bitv;
#[legacy_exports]
mod deque;
#[legacy_exports]
mod fun_treemap;
#[legacy_exports]
mod list;
#[legacy_exports]
mod map;
#[legacy_exports]
2011-11-04 12:38:42 -05:00
mod rope;
#[legacy_exports]
mod smallintmap;
#[legacy_exports]
mod sort;
#[legacy_exports]
mod treemap;
#[legacy_exports]
// And ... other stuff
#[legacy_exports]
mod ebml;
#[legacy_exports]
mod dbg;
#[legacy_exports]
mod getopts;
#[legacy_exports]
mod json;
#[legacy_exports]
mod sha1;
#[legacy_exports]
2012-01-17 04:50:31 -06:00
mod md4;
#[legacy_exports]
mod tempfile;
#[legacy_exports]
mod term;
#[legacy_exports]
mod time;
#[legacy_exports]
mod prettyprint;
#[legacy_exports]
2012-03-20 21:06:04 -05:00
mod arena;
#[legacy_exports]
2012-05-30 12:36:29 -05:00
mod par;
#[legacy_exports]
2012-06-07 20:12:50 -05:00
mod cmp;
#[legacy_exports]
2012-07-05 16:40:51 -05:00
mod base64;
#[cfg(unicode)]
#[legacy_exports]
mod unicode;
// Compiler support modules
#[legacy_exports]
mod test;
#[legacy_exports]
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: