remove all mentions of Xargo

as you can use plain Cargo to do ARM Cortex-M development
This commit is contained in:
Jorge Aparicio
2018-04-09 00:06:24 +02:00
parent 578dfc7f86
commit fb3f403be5
5 changed files with 37 additions and 72 deletions

View File

@@ -1,20 +1,5 @@
//! How to use the heap and a dynamic memory allocator
//!
//! To compile this example you'll need to build the alloc crate as part
//! of the Xargo sysroot. To do that change the Xargo.toml file to look like
//! this:
//!
//! ``` text
//! [dependencies.core]
//! stage = 0
//!
//! [dependencies.alloc] # NEW
//! stage = 0
//!
//! [dependencies.compiler_builtins]
//! stage = 1
//! ```
//!
//! This example depends on the alloc-cortex-m crate so you'll have to add it
//! to your Cargo.toml:
//!