rust/src/libstd/std.rc

130 lines
2.6 KiB
Plaintext
Raw Normal View History

2012-12-10 17:44:02 -06:00
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// 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.
*/
#[link(name = "std",
2012-10-12 18:41:25 -05:00
vers = "0.5",
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
url = "https://github.com/mozilla/rust/tree/master/src/libstd")];
#[comment = "The Rust standard library"];
#[license = "MIT"];
#[crate_type = "lib"];
2012-03-07 20:17:30 -06:00
2012-04-05 19:30:26 -05:00
#[no_core];
#[allow(vecs_implicitly_copyable)];
#[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-10-12 18:41:25 -05:00
extern mod core(vers = "0.5");
2012-09-05 13:46:25 -05:00
use core::*;
2012-04-05 19:30:26 -05:00
// General io and system-services modules
pub mod net;
pub mod net_ip;
pub mod net_tcp;
pub mod net_url;
// libuv modules
pub mod uv;
pub mod uv_ll;
pub mod uv_iotask;
pub mod uv_global_loop;
2010-06-23 23:03:09 -05:00
// Utility modules
pub mod c_vec;
pub mod timer;
pub mod cell;
// Concurrency
pub mod sync;
pub mod arc;
pub mod comm;
2012-10-23 16:20:57 -05:00
pub mod future;
pub mod task_pool;
2012-11-25 16:12:21 -06:00
pub mod flatpipes;
2010-06-23 23:03:09 -05:00
// Collections
2010-06-23 23:03:09 -05:00
pub mod bitv;
pub mod deque;
pub mod fun_treemap;
pub mod list;
pub mod map;
pub mod priority_queue;
pub mod rope;
pub mod smallintmap;
pub mod sort;
pub mod treemap;
// And ... other stuff
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;
pub mod workcache;
#[cfg(unicode)]
mod unicode;
// Compiler support modules
pub mod test;
pub mod serialize;
#[cfg(stage0)]
pub mod serialization;
// A curious inner-module that's not exported that contains the binding
// 'std' so that macro-expanded references to std::serialize and such
// can be resolved within libcore.
#[doc(hidden)] // FIXME #3538
mod std {
pub use serialize;
#[cfg(stage0)]
pub use serialization;
}
// Local Variables:
// mode: rust;
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End: