2013-02-28 13:15:32 +00:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 15:44:02 -08: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 16:52:46 -07: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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2013-05-17 15:28:44 -07:00
|
|
|
#[link(name = "extra",
|
2013-04-04 21:46:37 -07:00
|
|
|
vers = "0.7-pre",
|
2011-06-28 12:53:59 -07:00
|
|
|
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
|
2012-03-28 13:42:17 -07:00
|
|
|
url = "https://github.com/mozilla/rust/tree/master/src/libstd")];
|
2011-06-28 12:53:59 -07:00
|
|
|
|
2011-11-01 20:48:44 -07:00
|
|
|
#[comment = "The Rust standard library"];
|
2013-03-01 08:41:31 -08:00
|
|
|
#[license = "MIT/ASL2"];
|
2011-12-08 21:08:23 -08:00
|
|
|
#[crate_type = "lib"];
|
2012-03-07 18:17:30 -08:00
|
|
|
|
2012-09-09 15:00:29 -07:00
|
|
|
#[deny(non_camel_case_types)];
|
2013-05-28 22:11:41 -05:00
|
|
|
#[deny(missing_doc)];
|
|
|
|
|
|
|
|
// NOTE: remove these two attributes after the next snapshot
|
|
|
|
#[no_core]; // for stage0
|
|
|
|
#[allow(unrecognized_lint)]; // otherwise stage0 is seriously ugly
|
2013-05-02 22:52:19 -07:00
|
|
|
|
2013-05-17 15:28:44 -07:00
|
|
|
#[no_std];
|
|
|
|
|
|
|
|
extern mod core(name = "std", vers = "0.7-pre");
|
|
|
|
|
|
|
|
use core::{str, unstable};
|
|
|
|
use core::str::{StrSlice, OwnedStr};
|
|
|
|
|
2013-05-21 17:24:31 -07:00
|
|
|
pub use core::os;
|
|
|
|
|
2013-03-12 14:06:19 -07:00
|
|
|
pub mod uv_ll;
|
2013-02-03 18:15:43 -08:00
|
|
|
|
2011-11-01 20:48:44 -07:00
|
|
|
// General io and system-services modules
|
|
|
|
|
2012-10-04 13:47:24 -07:00
|
|
|
pub mod net;
|
|
|
|
pub mod net_ip;
|
|
|
|
pub mod net_tcp;
|
|
|
|
pub mod net_url;
|
2012-04-02 09:12:43 -07:00
|
|
|
|
|
|
|
// libuv modules
|
2012-10-04 13:47:24 -07:00
|
|
|
pub mod uv;
|
|
|
|
pub mod uv_iotask;
|
|
|
|
pub mod uv_global_loop;
|
2010-06-23 21:03:09 -07:00
|
|
|
|
2010-07-05 14:38:02 -07:00
|
|
|
|
2011-11-01 20:48:44 -07:00
|
|
|
// Utility modules
|
|
|
|
|
2012-10-04 13:47:24 -07:00
|
|
|
pub mod c_vec;
|
|
|
|
pub mod timer;
|
2013-01-10 20:09:26 -08:00
|
|
|
pub mod io_util;
|
2013-05-04 19:51:05 -04:00
|
|
|
pub mod rc;
|
2010-07-05 14:38:02 -07:00
|
|
|
|
2012-08-10 18:20:03 -04:00
|
|
|
// Concurrency
|
|
|
|
|
2012-10-04 13:47:24 -07:00
|
|
|
pub mod sync;
|
|
|
|
pub mod arc;
|
|
|
|
pub mod comm;
|
2012-10-23 14:20:57 -07:00
|
|
|
pub mod future;
|
2012-11-15 12:32:00 -08:00
|
|
|
pub mod task_pool;
|
2012-11-25 14:12:21 -08:00
|
|
|
pub mod flatpipes;
|
2010-06-23 21:03:09 -07:00
|
|
|
|
2011-11-01 20:48:44 -07:00
|
|
|
// Collections
|
2010-06-23 21:03:09 -07:00
|
|
|
|
2012-10-04 13:47:24 -07:00
|
|
|
pub mod bitv;
|
|
|
|
pub mod deque;
|
|
|
|
pub mod fun_treemap;
|
|
|
|
pub mod list;
|
2012-12-09 20:02:33 -05:00
|
|
|
pub mod priority_queue;
|
2012-10-04 13:47:24 -07:00
|
|
|
pub mod rope;
|
2013-01-31 19:07:08 -05:00
|
|
|
pub mod smallintmap;
|
2013-05-01 08:49:48 -04:00
|
|
|
|
2012-10-04 13:47:24 -07:00
|
|
|
pub mod sort;
|
2013-05-01 08:49:48 -04:00
|
|
|
|
2013-03-30 16:15:46 -04:00
|
|
|
pub mod dlist;
|
2012-10-04 13:47:24 -07:00
|
|
|
pub mod treemap;
|
2011-11-01 20:48:44 -07:00
|
|
|
|
|
|
|
// And ... other stuff
|
|
|
|
|
2012-10-04 13:47:24 -07: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 arena;
|
|
|
|
pub mod par;
|
|
|
|
pub mod base64;
|
2012-11-04 15:40:57 +10:00
|
|
|
pub mod rl;
|
2012-11-30 10:33:16 -08:00
|
|
|
pub mod workcache;
|
2013-04-05 17:36:24 +11:00
|
|
|
#[path="num/bigint.rs"]
|
2012-12-15 21:57:15 +09:00
|
|
|
pub mod bigint;
|
2013-04-05 17:54:11 +11:00
|
|
|
#[path="num/rational.rs"]
|
|
|
|
pub mod rational;
|
2013-04-05 18:18:19 +11:00
|
|
|
#[path="num/complex.rs"]
|
|
|
|
pub mod complex;
|
2013-01-15 17:30:35 -08:00
|
|
|
pub mod stats;
|
2013-01-23 19:25:03 +10:00
|
|
|
pub mod semver;
|
2013-02-23 17:46:04 +11:00
|
|
|
pub mod fileinput;
|
2013-05-02 19:10:23 -07:00
|
|
|
pub mod flate;
|
2011-11-01 20:48:44 -07:00
|
|
|
|
|
|
|
#[cfg(unicode)]
|
|
|
|
mod unicode;
|
|
|
|
|
2013-05-30 02:13:35 -04:00
|
|
|
#[path="terminfo/terminfo.rs"]
|
|
|
|
pub mod terminfo;
|
2011-11-01 20:48:44 -07:00
|
|
|
|
|
|
|
// Compiler support modules
|
|
|
|
|
2012-10-04 13:47:24 -07:00
|
|
|
pub mod test;
|
2012-12-10 20:37:21 -08:00
|
|
|
pub mod serialize;
|
2010-07-16 18:14:52 -07:00
|
|
|
|
2012-11-28 14:08:19 -08:00
|
|
|
// A curious inner-module that's not exported that contains the binding
|
2013-05-18 12:39:17 -07:00
|
|
|
// 'extra' so that macro-expanded references to std::serialize and such
|
|
|
|
// can be resolved within libextra.
|
2013-05-27 13:12:08 -04:00
|
|
|
#[doc(hidden)]
|
2013-03-01 10:44:43 -08:00
|
|
|
pub mod std {
|
2012-12-10 20:37:21 -08:00
|
|
|
pub use serialize;
|
2013-02-13 11:46:14 -08:00
|
|
|
pub use test;
|
2013-05-20 15:20:16 -07:00
|
|
|
|
|
|
|
// For bootstrapping.
|
|
|
|
pub use core::clone;
|
|
|
|
pub use core::condition;
|
|
|
|
pub use core::cmp;
|
|
|
|
pub use core::sys;
|
2013-05-24 19:35:29 -07:00
|
|
|
pub use core::unstable;
|
|
|
|
pub use core::str;
|
|
|
|
pub use core::os;
|
2012-11-28 14:08:19 -08:00
|
|
|
}
|
2013-05-27 13:12:08 -04:00
|
|
|
#[doc(hidden)]
|
2013-05-18 12:39:17 -07:00
|
|
|
pub mod extra {
|
|
|
|
pub use serialize;
|
|
|
|
pub use test;
|
|
|
|
}
|