The no_std attribute is stable now

This commit is contained in:
Philipp Oppermann
2015-12-13 19:10:26 +01:00
parent 87b8fc6a29
commit 22014eb38d
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ The `package` section contains required project metadata such as the [semantic c
Now we place our root source file in `src/lib.rs`: Now we place our root source file in `src/lib.rs`:
```rust ```rust
#![feature(no_std, lang_items)] #![feature(lang_items)]
#![no_std] #![no_std]
#[no_mangle] #[no_mangle]

View File

@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#![feature(no_std, lang_items)] #![feature(lang_items)]
#![feature(const_fn, unique, core_str_ext, iter_cmp)] #![feature(const_fn, unique, core_str_ext, iter_cmp)]
#![no_std] #![no_std]