rust/src/libstd/std.rc

114 lines
1.8 KiB
Plaintext
Raw Normal View History

#[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"];
2010-06-23 23:03:09 -05:00
export fs, io, net, run, uv;
2011-12-20 00:55:15 -06:00
export c_vec, four, tri, util;
export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap, ufind;
2011-11-04 12:38:42 -05:00
export rope;
export ebml, dbg, getopts, json, rand, sha1, term, time;
export test, tempfile, serialization;
// FIXME: generic_os and os_fs shouldn't be exported
export generic_os, os, os_fs;
// General io and system-services modules
mod fs;
2011-08-11 21:14:38 -05:00
mod io;
mod net;
#[path = "run_program.rs"]
mod run;
mod uv;
2010-06-23 23:03:09 -05:00
// Utility modules
2011-11-23 04:15:04 -06:00
mod c_vec;
mod four;
mod tri;
mod util;
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;
mod ufind;
// And ... other stuff
mod ebml;
mod dbg;
mod getopts;
mod json;
mod rand;
mod sha1;
2012-01-17 04:50:31 -06:00
mod md4;
mod tempfile;
mod term;
mod time;
#[cfg(unicode)]
mod unicode;
// Compiler support modules
mod test;
mod serialization;
// Target-os module.
2010-06-23 23:03:09 -05:00
// TODO: Have each os module re-export everything from genericos.
mod generic_os;
#[cfg(target_os = "win32")]
#[path = "win32_os.rs"]
mod os;
#[cfg(target_os = "win32")]
#[path = "win32_fs.rs"]
mod os_fs;
#[cfg(target_os = "macos")]
#[path = "macos_os.rs"]
mod os;
#[cfg(target_os = "macos")]
#[path = "posix_fs.rs"]
mod os_fs;
#[cfg(target_os = "linux")]
#[path = "linux_os.rs"]
mod os;
#[cfg(target_os = "linux")]
#[path = "posix_fs.rs"]
mod os_fs;
2011-12-30 02:18:55 -06:00
#[cfg(target_os = "freebsd")]
#[path = "freebsd_os.rs"]
mod os;
#[cfg(target_os = "freebsd")]
#[path = "posix_fs.rs"]
mod os_fs;
// Local Variables:
// mode: rust;
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End: