diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-11-05 14:33:30 +0100 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-11-17 18:04:36 -0500 |
| commit | 60c84eed42c03ac6cfed92c256ce2b3be3199140 (patch) | |
| tree | 31fce5412773c0d4e106e11eeeb15b506b65811d /src | |
| parent | 57c8a3e8b6a3200bb01d0ea60e4686a1ecfcb907 (diff) | |
| download | rust-60c84eed42c03ac6cfed92c256ce2b3be3199140.tar.gz rust-60c84eed42c03ac6cfed92c256ce2b3be3199140.zip | |
Remove claims of dependency-free libcore
libcore does have a few deps, like noted in https://github.com/rust-lang/rust/issues/29390 Fixes #29502
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcore/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs index df7b7c437c3..263d01a5d26 100644 --- a/src/libcore/lib.rs +++ b/src/libcore/lib.rs @@ -10,12 +10,15 @@ //! # The Rust Core Library //! -//! The Rust Core Library is the dependency-free foundation of [The +//! The Rust Core Library is the dependency-free[^free] foundation of [The //! Rust Standard Library](../std/index.html). It is the portable glue //! between the language and its libraries, defining the intrinsic and //! primitive building blocks of all Rust code. It links to no //! upstream libraries, no system libraries, and no libc. //! +//! [^free]: Strictly speaking, there are some symbols which are needed but +//! they aren't always neccesary. +//! //! The core library is *minimal*: it isn't even aware of heap allocation, //! nor does it provide concurrency or I/O. These things require //! platform integration, and this library is platform-agnostic. |
