2011-06-28 14:53:59 -05:00
|
|
|
#[link(name = "std",
|
|
|
|
vers = "0.1",
|
|
|
|
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
|
|
|
|
url = "http://rust-lang.org/src/std")];
|
|
|
|
|
2011-11-01 22:48:44 -05:00
|
|
|
#[comment = "The Rust standard library"];
|
2012-01-08 18:21:43 -06:00
|
|
|
#[license = "MIT"];
|
2011-12-08 23:08:23 -06:00
|
|
|
#[crate_type = "lib"];
|
2012-03-07 20:17:30 -06:00
|
|
|
#[doc = "The Rust standard library"];
|
|
|
|
|
2012-03-12 22:04:27 -05:00
|
|
|
export net, uv;
|
2011-12-20 00:55:15 -06:00
|
|
|
export c_vec, four, tri, util;
|
2011-11-01 22:48:44 -05:00
|
|
|
export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap, ufind;
|
2011-11-04 12:38:42 -05:00
|
|
|
export rope;
|
2011-12-14 20:04:45 -06:00
|
|
|
export ebml, dbg, getopts, json, rand, sha1, term, time;
|
2012-02-14 17:21:53 -06:00
|
|
|
export test, tempfile, serialization;
|
2011-11-01 22:48:44 -05:00
|
|
|
|
|
|
|
|
|
|
|
// General io and system-services modules
|
|
|
|
|
|
|
|
mod net;
|
2011-12-01 01:26:23 -06:00
|
|
|
mod uv;
|
2010-06-23 23:03:09 -05:00
|
|
|
|
2010-07-05 16:38:02 -05:00
|
|
|
|
2011-11-01 22:48:44 -05:00
|
|
|
// Utility modules
|
|
|
|
|
2011-11-23 04:15:04 -06:00
|
|
|
mod c_vec;
|
2011-11-19 00:44:41 -06:00
|
|
|
mod four;
|
|
|
|
mod tri;
|
2011-05-12 10:24:54 -05:00
|
|
|
mod util;
|
2010-07-05 16:38:02 -05:00
|
|
|
|
2010-06-23 23:03:09 -05:00
|
|
|
|
2011-11-01 22:48:44 -05:00
|
|
|
// Collections
|
2010-06-23 23:03:09 -05:00
|
|
|
|
2011-11-01 22:48:44 -05:00
|
|
|
mod bitv;
|
|
|
|
mod deque;
|
|
|
|
mod fun_treemap;
|
|
|
|
mod list;
|
|
|
|
mod map;
|
2011-11-04 12:38:42 -05:00
|
|
|
mod rope;
|
2011-11-01 22:48:44 -05:00
|
|
|
mod smallintmap;
|
|
|
|
mod sort;
|
|
|
|
mod treemap;
|
|
|
|
mod ufind;
|
|
|
|
|
|
|
|
|
|
|
|
// And ... other stuff
|
|
|
|
|
|
|
|
mod ebml;
|
|
|
|
mod dbg;
|
|
|
|
mod getopts;
|
2011-11-07 13:01:28 -06:00
|
|
|
mod json;
|
2011-11-01 22:48:44 -05:00
|
|
|
mod sha1;
|
2012-01-17 04:50:31 -06:00
|
|
|
mod md4;
|
2011-11-08 22:35:15 -06:00
|
|
|
mod tempfile;
|
2011-11-01 22:48:44 -05:00
|
|
|
mod term;
|
|
|
|
mod time;
|
|
|
|
|
|
|
|
#[cfg(unicode)]
|
|
|
|
mod unicode;
|
|
|
|
|
|
|
|
|
|
|
|
// Compiler support modules
|
|
|
|
|
|
|
|
mod test;
|
2012-02-12 21:02:08 -06:00
|
|
|
mod serialization;
|
2010-07-16 20:14:52 -05:00
|
|
|
|
2010-09-22 17:44:13 -05:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust;
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|