]> git.lizzy.rs Git - rust.git/blob - src/libstd/lib.rs
auto merge of #10528 : alexcrichton/rust/static-linking-v2, r=pcwalton
[rust.git] / src / libstd / lib.rs
1 // Copyright 2012-2013 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 is a group of interrelated modules defining
14 //! the core language traits, operations on built-in data types, collections,
15 //! platform abstractions, the task scheduler, runtime support for language
16 //! features and other common functionality.
17 //!
18 //! `std` includes modules corresponding to each of the integer types,
19 //! each of the floating point types, the `bool` type, tuples, characters,
20 //! strings (`str`), vectors (`vec`), managed boxes (`managed`), owned
21 //! boxes (`owned`), and unsafe and borrowed pointers (`ptr`, `borrowed`).
22 //! Additionally, `std` provides pervasive types (`option` and `result`),
23 //! task creation and communication primitives (`task`, `comm`), platform
24 //! abstractions (`os` and `path`), basic I/O abstractions (`io`), common
25 //! traits (`kinds`, `ops`, `cmp`, `num`, `to_str`), and complete bindings
26 //! to the C standard library (`libc`).
27 //!
28 //! # Standard library injection and the Rust prelude
29 //!
30 //! `std` is imported at the topmost level of every crate by default, as
31 //! if the first line of each crate was
32 //!
33 //!     extern mod std;
34 //!
35 //! This means that the contents of std can be accessed from any context
36 //! with the `std::` path prefix, as in `use std::vec`, `use std::task::spawn`,
37 //! etc.
38 //!
39 //! Additionally, `std` contains a `prelude` module that reexports many of the
40 //! most common types, traits and functions. The contents of the prelude are
41 //! imported into every *module* by default.  Implicitly, all modules behave as if
42 //! they contained the following prologue:
43 //!
44 //!     use std::prelude::*;
45
46 #[link(name = "std",
47        package_id = "std",
48        vers = "0.9-pre",
49        uuid = "c70c24a7-5551-4f73-8e37-380b11d80be8",
50        url = "https://github.com/mozilla/rust/tree/master/src/libstd")];
51
52 #[comment = "The Rust standard library"];
53 #[license = "MIT/ASL2"];
54 #[crate_type = "lib"]; // NOTE: remove after stage0 snapshot
55 #[crate_type = "rlib"];
56 #[crate_type = "dylib"];
57
58 #[doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
59       html_favicon_url = "http://www.rust-lang.org/favicon.ico",
60       html_root_url = "http://static.rust-lang.org/doc/master")];
61
62 #[feature(macro_rules, globs, asm, managed_boxes, thread_local)];
63
64 // Don't link to std. We are std.
65 #[no_std];
66
67 #[deny(non_camel_case_types)];
68 #[deny(missing_doc)];
69 #[allow(attribute_usage)]; // NOTE: remove after the next snapshot
70
71 // When testing libstd, bring in libuv as the I/O backend so tests can print
72 // things and all of the std::io tests have an I/O interface to run on top
73 // of
74 #[cfg(test)] extern mod rustuv(vers = "0.9-pre");
75
76 // Make extra accessible for benchmarking
77 #[cfg(test)] extern mod extra(vers = "0.9-pre");
78
79 // Make std testable by not duplicating lang items. See #2912
80 #[cfg(test)] extern mod realstd(name = "std");
81 #[cfg(test)] pub use kinds = realstd::kinds;
82 #[cfg(test)] pub use ops = realstd::ops;
83 #[cfg(test)] pub use cmp = realstd::cmp;
84
85 mod rtdeps;
86
87 /* The Prelude. */
88
89 pub mod prelude;
90
91
92 /* Primitive types */
93
94 #[path = "num/int_macros.rs"]   mod int_macros;
95 #[path = "num/uint_macros.rs"]  mod uint_macros;
96
97 #[path = "num/int.rs"]  pub mod int;
98 #[path = "num/i8.rs"]   pub mod i8;
99 #[path = "num/i16.rs"]  pub mod i16;
100 #[path = "num/i32.rs"]  pub mod i32;
101 #[path = "num/i64.rs"]  pub mod i64;
102
103 #[path = "num/uint.rs"] pub mod uint;
104 #[path = "num/u8.rs"]   pub mod u8;
105 #[path = "num/u16.rs"]  pub mod u16;
106 #[path = "num/u32.rs"]  pub mod u32;
107 #[path = "num/u64.rs"]  pub mod u64;
108
109 #[path = "num/f32.rs"]   pub mod f32;
110 #[path = "num/f64.rs"]   pub mod f64;
111
112 pub mod unit;
113 pub mod bool;
114 pub mod char;
115 pub mod tuple;
116
117 pub mod vec;
118 pub mod at_vec;
119 pub mod str;
120
121 pub mod ascii;
122 pub mod send_str;
123
124 pub mod ptr;
125 pub mod owned;
126 pub mod managed;
127 pub mod borrow;
128 pub mod rc;
129 pub mod gc;
130
131
132 /* Core language traits */
133
134 #[cfg(not(test))] pub mod kinds;
135 #[cfg(not(test))] pub mod ops;
136 #[cfg(not(test))] pub mod cmp;
137
138
139 /* Common traits */
140
141 pub mod from_str;
142 pub mod num;
143 pub mod iter;
144 pub mod to_str;
145 pub mod to_bytes;
146 pub mod clone;
147 pub mod hash;
148 pub mod container;
149 pub mod default;
150 pub mod any;
151
152
153 /* Common data structures */
154
155 pub mod option;
156 pub mod result;
157 pub mod either;
158 pub mod hashmap;
159 pub mod cell;
160 pub mod trie;
161
162
163 /* Tasks and communication */
164
165 pub mod task;
166 pub mod comm;
167 pub mod select;
168 pub mod local_data;
169
170
171 /* Runtime and platform support */
172
173 pub mod libc;
174 pub mod c_str;
175 pub mod os;
176 pub mod io;
177 pub mod path;
178 pub mod rand;
179 pub mod run;
180 pub mod cast;
181 pub mod fmt;
182 pub mod repr;
183 pub mod cleanup;
184 pub mod reflect;
185 pub mod condition;
186 pub mod logging;
187 pub mod util;
188 pub mod mem;
189
190
191 /* Unsupported interfaces */
192
193 // Private APIs
194 pub mod unstable;
195
196
197 /* For internal use, not exported */
198
199 mod unicode;
200 #[path = "num/cmath.rs"]
201 mod cmath;
202
203 // FIXME #7809: This shouldn't be pub, and it should be reexported under 'unstable'
204 // but name resolution doesn't work without it being pub.
205 pub mod rt;
206
207 // A curious inner-module that's not exported that contains the binding
208 // 'std' so that macro-expanded references to std::error and such
209 // can be resolved within libstd.
210 #[doc(hidden)]
211 mod std {
212     pub use clone;
213     pub use cmp;
214     pub use condition;
215     pub use fmt;
216     pub use kinds;
217     pub use local_data;
218     pub use logging;
219     pub use logging;
220     pub use option;
221     pub use os;
222     pub use io;
223     pub use rt;
224     pub use str;
225     pub use to_bytes;
226     pub use to_str;
227     pub use unstable;
228 }