Skip to content

Commit

Permalink
Remove claims of dependency-free libcore
Browse files Browse the repository at this point in the history
libcore does have a few deps, like noted in #29390

Fixes #29502
  • Loading branch information
steveklabnik committed Nov 17, 2015
1 parent 57c8a3e commit 60c84ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/libcore/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 60c84ee

Please sign in to comment.