]> git.lizzy.rs Git - rust.git/blob - src/libcore/lib.rs
Auto merge of #35856 - phimuemue:master, r=brson
[rust.git] / src / libcore / lib.rs
1 // Copyright 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 Core Library
12 //!
13 //! The Rust Core Library is the dependency-free[^free] foundation of [The
14 //! Rust Standard Library](../std/index.html). It is the portable glue
15 //! between the language and its libraries, defining the intrinsic and
16 //! primitive building blocks of all Rust code. It links to no
17 //! upstream libraries, no system libraries, and no libc.
18 //!
19 //! [^free]: Strictly speaking, there are some symbols which are needed but
20 //!          they aren't always necessary.
21 //!
22 //! The core library is *minimal*: it isn't even aware of heap allocation,
23 //! nor does it provide concurrency or I/O. These things require
24 //! platform integration, and this library is platform-agnostic.
25 //!
26 //! # How to use the core library
27 //!
28 //! Please note that all of these details are currently not considered stable.
29 //!
30 // FIXME: Fill me in with more detail when the interface settles
31 //! This library is built on the assumption of a few existing symbols:
32 //!
33 //! * `memcpy`, `memcmp`, `memset` - These are core memory routines which are
34 //!   often generated by LLVM. Additionally, this library can make explicit
35 //!   calls to these functions. Their signatures are the same as found in C.
36 //!   These functions are often provided by the system libc, but can also be
37 //!   provided by the [rlibc crate](https://crates.io/crates/rlibc).
38 //!
39 //! * `rust_begin_panic` - This function takes three arguments, a
40 //!   `fmt::Arguments`, a `&'static str`, and a `u32`. These three arguments
41 //!   dictate the panic message, the file at which panic was invoked, and the
42 //!   line. It is up to consumers of this core library to define this panic
43 //!   function; it is only required to never return. This requires a `lang`
44 //!   attribute named `panic_fmt`.
45 //!
46 //! * `rust_eh_personality` - is used by the failure mechanisms of the
47 //!    compiler. This is often mapped to GCC's personality function, but crates
48 //!    which do not trigger a panic can be assured that this function is never
49 //!    called. The `lang` attribute is called `eh_personality`.
50
51 // Since libcore defines many fundamental lang items, all tests live in a
52 // separate crate, libcoretest, to avoid bizarre issues.
53
54 #![crate_name = "core"]
55 #![stable(feature = "core", since = "1.6.0")]
56 #![crate_type = "rlib"]
57 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
58        html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
59        html_root_url = "https://doc.rust-lang.org/nightly/",
60        html_playground_url = "https://play.rust-lang.org/",
61        issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
62        test(no_crate_inject, attr(deny(warnings))),
63        test(attr(allow(dead_code, deprecated, unused_variables, unused_mut))))]
64
65 #![no_core]
66 #![deny(missing_docs)]
67 #![deny(missing_debug_implementations)]
68 #![cfg_attr(not(stage0), deny(warnings))]
69
70 #![feature(allow_internal_unstable)]
71 #![feature(asm)]
72 #![feature(associated_type_defaults)]
73 #![feature(cfg_target_feature)]
74 #![feature(concat_idents)]
75 #![feature(const_fn)]
76 #![feature(cfg_target_has_atomic)]
77 #![feature(custom_attribute)]
78 #![feature(fundamental)]
79 #![feature(inclusive_range_syntax)]
80 #![feature(intrinsics)]
81 #![feature(lang_items)]
82 #![feature(no_core)]
83 #![feature(on_unimplemented)]
84 #![feature(optin_builtin_traits)]
85 #![feature(reflect)]
86 #![feature(unwind_attributes)]
87 #![feature(repr_simd, platform_intrinsics)]
88 #![feature(rustc_attrs)]
89 #![feature(specialization)]
90 #![feature(staged_api)]
91 #![feature(unboxed_closures)]
92 #![feature(question_mark)]
93 #![feature(never_type)]
94 #![feature(prelude_import)]
95
96 #[prelude_import]
97 #[allow(unused)]
98 use prelude::v1::*;
99
100 #[macro_use]
101 mod macros;
102
103 #[path = "num/float_macros.rs"]
104 #[macro_use]
105 mod float_macros;
106
107 #[path = "num/int_macros.rs"]
108 #[macro_use]
109 mod int_macros;
110
111 #[path = "num/uint_macros.rs"]
112 #[macro_use]
113 mod uint_macros;
114
115 #[path = "num/isize.rs"] pub mod isize;
116 #[path = "num/i8.rs"]    pub mod i8;
117 #[path = "num/i16.rs"]   pub mod i16;
118 #[path = "num/i32.rs"]   pub mod i32;
119 #[path = "num/i64.rs"]   pub mod i64;
120
121 #[path = "num/usize.rs"] pub mod usize;
122 #[path = "num/u8.rs"]    pub mod u8;
123 #[path = "num/u16.rs"]   pub mod u16;
124 #[path = "num/u32.rs"]   pub mod u32;
125 #[path = "num/u64.rs"]   pub mod u64;
126
127 #[path = "num/f32.rs"]   pub mod f32;
128 #[path = "num/f64.rs"]   pub mod f64;
129
130 #[macro_use]
131 pub mod num;
132
133 /* The libcore prelude, not as all-encompassing as the libstd prelude */
134
135 pub mod prelude;
136
137 /* Core modules for ownership management */
138
139 pub mod intrinsics;
140 pub mod mem;
141 pub mod nonzero;
142 pub mod ptr;
143
144 /* Core language traits */
145
146 pub mod marker;
147 pub mod ops;
148 pub mod cmp;
149 pub mod clone;
150 pub mod default;
151 pub mod convert;
152 pub mod borrow;
153
154 /* Core types and methods on primitives */
155
156 pub mod any;
157 pub mod array;
158 pub mod sync;
159 pub mod cell;
160 pub mod char;
161 pub mod panicking;
162 pub mod iter;
163 pub mod option;
164 pub mod raw;
165 pub mod result;
166
167 pub mod slice;
168 pub mod str;
169 pub mod hash;
170 pub mod fmt;
171
172 // note: does not need to be public
173 mod char_private;
174 mod iter_private;
175 mod tuple;