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
|
|
|
/*!
|
|
|
|
|
2013-06-17 02:07:52 -05:00
|
|
|
Rust extras.
|
2012-09-19 18:52:46 -05:00
|
|
|
|
2013-06-17 02:07:52 -05:00
|
|
|
The `extra` crate is a set of useful modules for a variety of
|
|
|
|
purposes, including collections, numerics, I/O, serialization,
|
|
|
|
and concurrency.
|
|
|
|
|
|
|
|
Rust extras are part of the standard Rust distribution.
|
2012-09-19 18:52:46 -05:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2013-05-17 17:28:44 -05:00
|
|
|
#[link(name = "extra",
|
2013-07-08 12:25:45 -05:00
|
|
|
vers = "0.8-pre",
|
2011-06-28 14:53:59 -05:00
|
|
|
uuid = "122bed0b-c19b-4b82-b0b7-7ae8aead7297",
|
2013-06-17 01:21:49 -05:00
|
|
|
url = "https://github.com/mozilla/rust/tree/master/src/libextra")];
|
2011-06-28 14:53:59 -05:00
|
|
|
|
2013-06-17 02:07:52 -05:00
|
|
|
#[comment = "Rust extras"];
|
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
|
|
|
|
2012-09-09 17:00:29 -05:00
|
|
|
#[deny(non_camel_case_types)];
|
2013-05-28 22:11:41 -05:00
|
|
|
#[deny(missing_doc)];
|
|
|
|
|
2013-06-28 17:32:26 -05:00
|
|
|
use std::str::{StrSlice, OwnedStr};
|
2013-05-17 17:28:44 -05:00
|
|
|
|
2013-06-28 17:32:26 -05:00
|
|
|
pub use std::os;
|
2013-05-21 19:24:31 -05:00
|
|
|
|
2013-03-12 16:06:19 -05:00
|
|
|
pub mod uv_ll;
|
2013-02-03 20:15:43 -06:00
|
|
|
|
2011-11-01 22:48:44 -05:00
|
|
|
// General io and system-services modules
|
|
|
|
|
2013-07-04 19:16:04 -05:00
|
|
|
#[path = "net/mod.rs"]
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod net;
|
2012-04-02 11:12:43 -05:00
|
|
|
|
|
|
|
// libuv modules
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod uv;
|
|
|
|
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;
|
2013-05-04 18:51:05 -05:00
|
|
|
pub mod rc;
|
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
|
|
|
|
2013-07-10 08:27:14 -05:00
|
|
|
pub mod container;
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod bitv;
|
|
|
|
pub mod fun_treemap;
|
|
|
|
pub mod list;
|
2013-07-10 08:27:14 -05:00
|
|
|
pub mod ringbuf;
|
2012-12-09 19:02:33 -06:00
|
|
|
pub mod priority_queue;
|
2013-01-31 18:07:08 -06:00
|
|
|
pub mod smallintmap;
|
2013-05-01 07:49:48 -05:00
|
|
|
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod sort;
|
2013-05-01 07:49:48 -05:00
|
|
|
|
2013-03-30 15:15:46 -05:00
|
|
|
pub mod dlist;
|
2012-10-04 15:47:24 -05:00
|
|
|
pub mod treemap;
|
2011-11-01 22:48:44 -05:00
|
|
|
|
2013-06-23 17:54:44 -05:00
|
|
|
// Crypto
|
2013-06-23 18:03:59 -05:00
|
|
|
#[path="crypto/digest.rs"]
|
|
|
|
pub mod digest;
|
2013-06-23 17:54:44 -05:00
|
|
|
#[path="crypto/sha1.rs"]
|
|
|
|
pub mod sha1;
|
2013-06-23 18:16:57 -05:00
|
|
|
#[path="crypto/sha2.rs"]
|
|
|
|
pub mod sha2;
|
2013-06-23 17:54:44 -05:00
|
|
|
|
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 md4;
|
|
|
|
pub mod tempfile;
|
|
|
|
pub mod term;
|
|
|
|
pub mod time;
|
|
|
|
pub mod arena;
|
|
|
|
pub mod par;
|
|
|
|
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;
|
2013-04-05 01:36:24 -05:00
|
|
|
#[path="num/bigint.rs"]
|
2012-12-15 06:57:15 -06:00
|
|
|
pub mod bigint;
|
2013-04-05 01:54:11 -05:00
|
|
|
#[path="num/rational.rs"]
|
|
|
|
pub mod rational;
|
2013-04-05 02:18:19 -05:00
|
|
|
#[path="num/complex.rs"]
|
|
|
|
pub mod complex;
|
2013-01-15 19:30:35 -06:00
|
|
|
pub mod stats;
|
2013-01-23 03:25:03 -06:00
|
|
|
pub mod semver;
|
2013-02-23 00:46:04 -06:00
|
|
|
pub mod fileinput;
|
2013-05-02 21:10:23 -05:00
|
|
|
pub mod flate;
|
2011-11-01 22:48:44 -05:00
|
|
|
|
|
|
|
#[cfg(unicode)]
|
|
|
|
mod unicode;
|
|
|
|
|
2013-05-30 01:13:35 -05:00
|
|
|
#[path="terminfo/terminfo.rs"]
|
|
|
|
pub mod terminfo;
|
2011-11-01 22:48:44 -05:00
|
|
|
|
|
|
|
// 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
|
2013-06-17 01:21:49 -05:00
|
|
|
// 'extra' so that macro-expanded references to extra::serialize and such
|
2013-05-18 14:39:17 -05:00
|
|
|
// can be resolved within libextra.
|
2013-05-27 12:12:08 -05:00
|
|
|
#[doc(hidden)]
|
2013-06-28 17:32:26 -05:00
|
|
|
pub mod extra {
|
2012-12-10 22:37:21 -06:00
|
|
|
pub use serialize;
|
2013-02-13 13:46:14 -06:00
|
|
|
pub use test;
|
2013-05-20 17:20:16 -05:00
|
|
|
|
|
|
|
// For bootstrapping.
|
2013-06-28 17:32:26 -05:00
|
|
|
pub use std::clone;
|
|
|
|
pub use std::condition;
|
|
|
|
pub use std::cmp;
|
|
|
|
pub use std::sys;
|
|
|
|
pub use std::unstable;
|
|
|
|
pub use std::str;
|
|
|
|
pub use std::os;
|
2013-05-18 14:39:17 -05:00
|
|
|
}
|