77 lines
1.1 KiB
Plaintext
77 lines
1.1 KiB
Plaintext
#[link(name = "std",
|
|
vers = "0.1",
|
|
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
|
|
url = "http://rust-lang.org/src/std")];
|
|
|
|
#[comment = "The Rust standard library"];
|
|
#[license = "MIT"];
|
|
#[crate_type = "lib"];
|
|
#[doc = "The Rust standard library"];
|
|
|
|
export net, uv;
|
|
export c_vec, four, tri, util;
|
|
export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap, ufind;
|
|
export rope, arena;
|
|
export ebml, dbg, getopts, json, rand, sha1, term, time, prettyprint;
|
|
export test, tempfile, serialization;
|
|
|
|
|
|
// General io and system-services modules
|
|
|
|
mod net;
|
|
mod uv;
|
|
|
|
|
|
// Utility modules
|
|
|
|
mod c_vec;
|
|
mod four;
|
|
mod tri;
|
|
mod util;
|
|
|
|
|
|
// Collections
|
|
|
|
mod bitv;
|
|
mod deque;
|
|
mod fun_treemap;
|
|
mod list;
|
|
mod map;
|
|
mod rope;
|
|
mod smallintmap;
|
|
mod sort;
|
|
mod treemap;
|
|
mod ufind;
|
|
|
|
|
|
// And ... other stuff
|
|
|
|
mod ebml;
|
|
mod dbg;
|
|
mod getopts;
|
|
mod json;
|
|
mod sha1;
|
|
mod md4;
|
|
mod tempfile;
|
|
mod term;
|
|
mod time;
|
|
mod prettyprint;
|
|
mod arena;
|
|
|
|
#[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:
|