2013-02-28 07:15:32 -06:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 17:44:02 -06:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
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-12-21 17:35:15 -06:00
|
|
|
vers = "0.6",
|
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"];
|
2013-03-01 10:41:31 -06:00
|
|
|
#[license = "MIT/ASL2"];
|
2011-12-08 23:08:23 -06:00
|
|
|
#[crate_type = "lib"];
|
2012-03-07 20:17:30 -06:00
|
|
|
|
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)];
|
2013-03-07 20:11:09 -06:00
|
|
|
#[deny(deprecated_self)];
|
2013-02-25 13:34:16 -06:00
|
|
|
#[allow(deprecated_mutable_fields)];
|
2012-06-04 20:34:24 -05:00
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
#[no_core];
|
|
|
|
|
2012-12-21 17:35:15 -06:00
|
|
|
extern mod core(vers = "0.6");
|
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;
|
2013-01-10 22:09:26 -06:00
|
|
|
pub mod io_util;
|
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;
|
2012-10-23 16:20:57 -05:00
|
|
|
pub mod future;
|
2012-11-15 14:32:00 -06:00
|
|
|
pub mod task_pool;
|
2012-11-25 16:12:21 -06:00
|
|
|
pub mod flatpipes;
|
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;
|
2013-02-01 01:13:36 -06:00
|
|
|
pub mod oldmap;
|
2012-12-09 19:02:33 -06:00
|
|
|
pub mod priority_queue;
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod rope;
|
2013-01-31 18:07:08 -06:00
|
|
|
pub mod smallintmap;
|
2012-10-04 15:47:24 -05:00
|
|
|
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;
|
2012-11-04 00:40:57 -05:00
|
|
|
pub mod rl;
|
2012-11-30 12:33:16 -06:00
|
|
|
pub mod workcache;
|
2012-12-15 06:57:15 -06:00
|
|
|
pub mod bigint;
|
2013-01-15 19:30:35 -06:00
|
|
|
pub mod stats;
|
2013-01-23 03:25:03 -06:00
|
|
|
pub mod semver;
|
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;
|
2012-12-10 22:37:21 -06:00
|
|
|
pub mod serialize;
|
2010-07-16 20:14:52 -05:00
|
|
|
|
2012-11-28 16:08:19 -06:00
|
|
|
// A curious inner-module that's not exported that contains the binding
|
2012-12-17 21:31:04 -06:00
|
|
|
// 'std' so that macro-expanded references to std::serialize and such
|
2012-11-28 16:08:19 -06:00
|
|
|
// can be resolved within libcore.
|
|
|
|
#[doc(hidden)] // FIXME #3538
|
2013-03-01 12:44:43 -06:00
|
|
|
pub mod std {
|
2012-12-10 22:37:21 -06:00
|
|
|
pub use serialize;
|
2013-02-13 13:46:14 -06:00
|
|
|
pub use test;
|
2012-11-28 16:08:19 -06: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:
|