]> git.lizzy.rs Git - rust.git/blob - src/libstd/lib.rs
std: Remove some old #[cfg(test) hacks
[rust.git] / src / libstd / lib.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! # The Rust Standard Library
12 //!
13 //! The Rust Standard Library provides the essential runtime
14 //! functionality for building portable Rust software.
15 //!
16 //! The Rust Standard Library is available to all Rust crates by
17 //! default, just as if contained an `extern crate std` import at the
18 //! crate root. Therefore the standard library can be accessed in
19 //! `use` statements through the path `std`, as in `use std::thread`,
20 //! or in expressions through the absolute path `::std`, as in
21 //! `::std::thread::sleep_ms(100)`.
22 //!
23 //! Furthermore, the standard library defines [The Rust
24 //! Prelude](prelude/index.html), a small collection of items, mostly
25 //! traits, that are imported into and available in every module.
26 //!
27 //! ## What is in the standard library
28 //!
29 //! The standard library is a set of minimal, battle-tested
30 //! core types and shared abstractions for the [broader Rust
31 //! ecosystem](https://crates.io) to build on.
32 //!
33 //! The [primitive types](#primitives), though not defined in the
34 //! standard library, are documented here, as are the predefined
35 //! [macros](#macros).
36 //!
37 //! ## Containers and collections
38 //!
39 //! The [`option`](option/index.html) and
40 //! [`result`](result/index.html) modules define optional and
41 //! error-handling types, `Option` and `Result`. The
42 //! [`iter`](iter/index.html) module defines Rust's iterator trait,
43 //! [`Iterator`](iter/trait.Iterator.html), which works with the `for`
44 //! loop to access collections.
45 //!
46 //! The common container type, `Vec`, a growable vector backed by an array,
47 //! lives in the [`vec`](vec/index.html) module. Contiguous, unsized regions
48 //! of memory, `[T]`, commonly called "slices", and their borrowed versions,
49 //! `&[T]`, commonly called "borrowed slices", are built-in types for which the
50 //! [`slice`](slice/index.html) module defines many methods.
51 //!
52 //! `&str`, a UTF-8 string, is a built-in type, and the standard library
53 //! defines methods for it on a variety of traits in the
54 //! [`str`](str/index.html) module. Rust strings are immutable;
55 //! use the `String` type defined in [`string`](string/index.html)
56 //! for a mutable string builder.
57 //!
58 //! For converting to strings use the [`format!`](fmt/index.html)
59 //! macro, and for converting from strings use the
60 //! [`FromStr`](str/trait.FromStr.html) trait.
61 //!
62 //! Data may be shared by placing it in a reference-counted box or the
63 //! [`Rc`](rc/index.html) type, and if further contained in a [`Cell`
64 //! or `RefCell`](cell/index.html), may be mutated as well as shared.
65 //! Likewise, in a concurrent setting it is common to pair an
66 //! atomically-reference-counted box, [`Arc`](sync/struct.Arc.html),
67 //! with a [`Mutex`](sync/struct.Mutex.html) to get the same effect.
68 //!
69 //! The [`collections`](collections/index.html) module defines maps,
70 //! sets, linked lists and other typical collection types, including
71 //! the common [`HashMap`](collections/struct.HashMap.html).
72 //!
73 //! ## Platform abstractions and I/O
74 //!
75 //! Besides basic data types, the standard library is largely concerned
76 //! with abstracting over differences in common platforms, most notably
77 //! Windows and Unix derivatives.
78 //!
79 //! Common types of I/O, including [files](fs/struct.File.html),
80 //! [TCP](net/struct.TcpStream.html),
81 //! [UDP](net/struct.UdpSocket.html), are defined in the
82 //! [`io`](io/index.html), [`fs`](fs/index.html), and
83 //! [`net`](net/index.html) modules.
84 //!
85 //! The [`thread`](thread/index.html) module contains Rust's threading
86 //! abstractions. [`sync`](sync/index.html) contains further
87 //! primitive shared memory types, including
88 //! [`atomic`](sync/atomic/index.html) and
89 //! [`mpsc`](sync/mpsc/index.html), which contains the channel types
90 //! for message passing.
91
92 // Do not remove on snapshot creation. Needed for bootstrap. (Issue #22364)
93 #![cfg_attr(stage0, feature(custom_attribute))]
94 #![crate_name = "std"]
95 #![stable(feature = "rust1", since = "1.0.0")]
96 #![staged_api]
97 #![crate_type = "rlib"]
98 #![crate_type = "dylib"]
99 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
100        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
101        html_root_url = "http://doc.rust-lang.org/nightly/",
102        html_playground_url = "http://play.rust-lang.org/",
103        test(no_crate_inject, attr(deny(warnings))),
104        test(attr(allow(dead_code, deprecated, unused_variables, unused_mut))))]
105
106 #![feature(alloc)]
107 #![feature(allow_internal_unstable)]
108 #![feature(associated_consts)]
109 #![feature(borrow_state)]
110 #![feature(box_raw)]
111 #![feature(box_syntax)]
112 #![feature(char_internals)]
113 #![feature(clone_from_slice)]
114 #![feature(collections)]
115 #![feature(collections_bound)]
116 #![feature(const_fn)]
117 #![feature(core)]
118 #![feature(core_float)]
119 #![feature(core_intrinsics)]
120 #![feature(core_prelude)]
121 #![feature(core_simd)]
122 #![feature(fnbox)]
123 #![feature(heap_api)]
124 #![feature(int_error_internals)]
125 #![feature(into_cow)]
126 #![feature(iter_order)]
127 #![feature(lang_items)]
128 #![feature(libc)]
129 #![feature(linkage, thread_local, asm)]
130 #![feature(macro_reexport)]
131 #![feature(slice_concat_ext)]
132 #![feature(slice_position_elem)]
133 #![feature(no_std)]
134 #![feature(oom)]
135 #![feature(optin_builtin_traits)]
136 #![feature(rand)]
137 #![feature(raw)]
138 #![feature(reflect_marker)]
139 #![feature(slice_bytes)]
140 #![feature(slice_patterns)]
141 #![feature(staged_api)]
142 #![feature(str_char)]
143 #![feature(str_internals)]
144 #![feature(unboxed_closures)]
145 #![feature(unicode)]
146 #![feature(unique)]
147 #![feature(unsafe_no_drop_flag, filling_drop)]
148 #![feature(vec_push_all)]
149 #![feature(vec_resize)]
150 #![feature(wrapping)]
151 #![feature(zero_one)]
152 #![cfg_attr(windows, feature(str_utf16))]
153 #![cfg_attr(test, feature(float_from_str_radix, range_inclusive, float_extras, hash_default))]
154 #![cfg_attr(test, feature(test, rustc_private, float_consts))]
155 #![cfg_attr(target_env = "msvc", feature(link_args))]
156
157 // Don't link to std. We are std.
158 #![no_std]
159
160 #![allow(trivial_casts)]
161 #![deny(missing_docs)]
162
163 #[cfg(test)] extern crate test;
164 #[cfg(test)] #[macro_use] extern crate log;
165
166 #[macro_use]
167 #[macro_reexport(assert, assert_eq, debug_assert, debug_assert_eq,
168     unreachable, unimplemented, write, writeln)]
169 extern crate core;
170
171 #[macro_use]
172 #[macro_reexport(vec, format)]
173 extern crate collections as core_collections;
174
175 #[allow(deprecated)] extern crate rand as core_rand;
176 extern crate alloc;
177 extern crate rustc_unicode;
178 extern crate libc;
179
180 #[macro_use] #[no_link] extern crate rustc_bitflags;
181
182 // Make std testable by not duplicating lang items and other globals. See #2912
183 #[cfg(test)] extern crate std as realstd;
184
185 // NB: These reexports are in the order they should be listed in rustdoc
186
187 pub use core::any;
188 pub use core::cell;
189 pub use core::clone;
190 pub use core::cmp;
191 pub use core::convert;
192 pub use core::default;
193 pub use core::hash;
194 pub use core::intrinsics;
195 pub use core::iter;
196 pub use core::marker;
197 pub use core::mem;
198 pub use core::ops;
199 pub use core::ptr;
200 pub use core::raw;
201 pub use core::simd;
202 pub use core::result;
203 pub use core::option;
204 pub mod error;
205
206 pub use alloc::boxed;
207 pub use alloc::rc;
208
209 pub use core_collections::borrow;
210 pub use core_collections::fmt;
211 pub use core_collections::slice;
212 pub use core_collections::str;
213 pub use core_collections::string;
214 #[stable(feature = "rust1", since = "1.0.0")]
215 pub use core_collections::vec;
216
217 pub use rustc_unicode::char;
218
219 /* Exported macros */
220
221 #[macro_use]
222 mod macros;
223
224 mod rtdeps;
225
226 /* The Prelude. */
227
228 pub mod prelude;
229
230
231 /* Primitive types */
232
233 // NB: slice and str are primitive types too, but their module docs + primitive doc pages
234 // are inlined from the public re-exports of core_collections::{slice, str} above.
235
236 #[path = "num/float_macros.rs"]
237 #[macro_use]
238 mod float_macros;
239
240 #[path = "num/int_macros.rs"]
241 #[macro_use]
242 mod int_macros;
243
244 #[path = "num/uint_macros.rs"]
245 #[macro_use]
246 mod uint_macros;
247
248 #[path = "num/isize.rs"]  pub mod isize;
249 #[path = "num/i8.rs"]   pub mod i8;
250 #[path = "num/i16.rs"]  pub mod i16;
251 #[path = "num/i32.rs"]  pub mod i32;
252 #[path = "num/i64.rs"]  pub mod i64;
253
254 #[path = "num/usize.rs"] pub mod usize;
255 #[path = "num/u8.rs"]   pub mod u8;
256 #[path = "num/u16.rs"]  pub mod u16;
257 #[path = "num/u32.rs"]  pub mod u32;
258 #[path = "num/u64.rs"]  pub mod u64;
259
260 #[path = "num/f32.rs"]   pub mod f32;
261 #[path = "num/f64.rs"]   pub mod f64;
262
263 pub mod ascii;
264
265 pub mod thunk;
266
267 /* Common traits */
268
269 pub mod num;
270
271 /* Runtime and platform support */
272
273 #[macro_use]
274 pub mod thread;
275
276 pub mod collections;
277 pub mod dynamic_lib;
278 pub mod env;
279 pub mod ffi;
280 pub mod fs;
281 pub mod io;
282 pub mod net;
283 pub mod os;
284 pub mod path;
285 pub mod process;
286 pub mod sync;
287 pub mod time;
288
289 #[macro_use]
290 #[path = "sys/common/mod.rs"] mod sys_common;
291
292 #[cfg(unix)]
293 #[path = "sys/unix/mod.rs"] mod sys;
294 #[cfg(windows)]
295 #[path = "sys/windows/mod.rs"] mod sys;
296
297 pub mod rt;
298 mod panicking;
299 mod rand;
300
301 // Some external utilities of the standard library rely on randomness (aka
302 // rustc_back::TempDir and tests) and need a way to get at the OS rng we've got
303 // here. This module is not at all intended for stabilization as-is, however,
304 // but it may be stabilized long-term. As a result we're exposing a hidden,
305 // unstable module so we can get our build working.
306 #[doc(hidden)]
307 #[unstable(feature = "rand")]
308 pub mod __rand {
309     pub use rand::{thread_rng, ThreadRng, Rng};
310 }
311
312 // Modules that exist purely to document + host impl docs for primitive types
313
314 mod array;
315 mod bool;
316 mod unit;
317 mod tuple;
318
319 // A curious inner-module that's not exported that contains the binding
320 // 'std' so that macro-expanded references to std::error and such
321 // can be resolved within libstd.
322 #[doc(hidden)]
323 mod std {
324     pub use sync; // used for select!()
325     pub use error; // used for try!()
326     pub use fmt; // used for any formatting strings
327     pub use option; // used for thread_local!{}
328     pub use rt; // used for panic!()
329     pub use vec; // used for vec![]
330     pub use cell; // used for tls!
331     pub use thread; // used for thread_local!
332     pub use marker;  // used for tls!
333
334     // The test runner calls ::std::env::args() but really wants realstd
335     #[cfg(test)] pub use realstd::env as env;
336     // The test runner requires std::slice::Vector, so re-export std::slice just for it.
337     //
338     // It is also used in vec![]
339     pub use slice;
340
341     pub use boxed; // used for vec![]
342 }