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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2011-06-28 14:53:59 -05:00
|
|
|
#[link(name = "std",
|
2012-08-30 16:05:49 -05:00
|
|
|
vers = "0.4",
|
2011-06-28 14:53:59 -05:00
|
|
|
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
|
2012-03-28 15:42:17 -05:00
|
|
|
url = "https://github.com/mozilla/rust/tree/master/src/libstd")];
|
2011-06-28 14:53:59 -05:00
|
|
|
|
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
|
|
|
|
2012-04-05 19:30:26 -05:00
|
|
|
#[no_core];
|
|
|
|
|
Nomenclature fixes in the lint checker. Fewer double-negatives.
New style is allow(foo), warn(foo), deny(foo) and forbid(foo),
mirrored by -A foo, -W foo, -D foo and -F foo on command line.
These replace -W no-foo, -W foo, -W err-foo, respectively.
Forbid is new, and means "deny, and you can't override it".
2012-07-26 19:08:21 -05:00
|
|
|
#[allow(vecs_implicitly_copyable)];
|
2012-09-09 17:00:29 -05:00
|
|
|
#[deny(non_camel_case_types)];
|
2012-10-05 13:59:51 -05:00
|
|
|
// XXX this is set to allow because there are two methods in serialization
|
|
|
|
// that can't be silenced otherwise. Most every module is set to forbid
|
|
|
|
#[allow(deprecated_mode)];
|
2012-09-28 02:22:18 -05:00
|
|
|
#[forbid(deprecated_pattern)];
|
2012-06-04 20:34:24 -05:00
|
|
|
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod core(vers = "0.4");
|
2012-09-05 13:46:25 -05:00
|
|
|
use core::*;
|
2012-04-05 19:30:26 -05:00
|
|
|
|
2011-11-01 22:48:44 -05:00
|
|
|
// General io and system-services modules
|
|
|
|
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod net;
|
|
|
|
pub mod net_ip;
|
|
|
|
pub mod net_tcp;
|
|
|
|
pub mod net_url;
|
2012-04-02 11:12:43 -05:00
|
|
|
|
|
|
|
// libuv modules
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod uv;
|
|
|
|
pub mod uv_ll;
|
|
|
|
pub mod uv_iotask;
|
|
|
|
pub mod uv_global_loop;
|
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
|
|
|
|
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod c_vec;
|
|
|
|
pub mod timer;
|
|
|
|
pub mod cell;
|
2010-07-05 16:38:02 -05:00
|
|
|
|
2012-08-10 17:20:03 -05:00
|
|
|
// Concurrency
|
|
|
|
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod sync;
|
|
|
|
pub mod arc;
|
|
|
|
pub mod comm;
|
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
|
|
|
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod bitv;
|
|
|
|
pub mod deque;
|
|
|
|
pub mod fun_treemap;
|
|
|
|
pub mod list;
|
|
|
|
pub mod map;
|
|
|
|
pub mod rope;
|
|
|
|
pub mod smallintmap;
|
|
|
|
pub mod sort;
|
|
|
|
pub mod treemap;
|
2011-11-01 22:48:44 -05:00
|
|
|
|
|
|
|
// And ... other stuff
|
|
|
|
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod ebml;
|
|
|
|
pub mod dbg;
|
|
|
|
pub mod getopts;
|
|
|
|
pub mod json;
|
|
|
|
pub mod sha1;
|
|
|
|
pub mod md4;
|
|
|
|
pub mod tempfile;
|
|
|
|
pub mod term;
|
|
|
|
pub mod time;
|
|
|
|
pub mod prettyprint;
|
|
|
|
pub mod arena;
|
|
|
|
pub mod par;
|
|
|
|
pub mod cmp;
|
|
|
|
pub mod base64;
|
2011-11-01 22:48:44 -05:00
|
|
|
|
|
|
|
#[cfg(unicode)]
|
|
|
|
mod unicode;
|
|
|
|
|
|
|
|
|
|
|
|
// Compiler support modules
|
|
|
|
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod test;
|
|
|
|
pub 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:
|