diff options
| author | Cristian Carlesso <[email protected]> | 2017-04-30 12:51:23 +0100 |
|---|---|---|
| committer | Cristian Carlesso <[email protected]> | 2017-04-30 12:51:23 +0100 |
| commit | e617cba56763674330ce286598776bc18f59598b (patch) | |
| tree | 41081ac41025775f516a37ecba2ea6e1815ef42e /ctr-std/src/lib.rs | |
| parent | Merge pull request #29 from FenrirWolf/condvar_patch (diff) | |
| download | ctru-rs-e617cba56763674330ce286598776bc18f59598b.tar.xz ctru-rs-e617cba56763674330ce286598776bc18f59598b.zip | |
Make ctru-rs compile again
Diffstat (limited to 'ctr-std/src/lib.rs')
| -rw-r--r-- | ctr-std/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ctr-std/src/lib.rs b/ctr-std/src/lib.rs index 3724cc4..7a520b8 100644 --- a/ctr-std/src/lib.rs +++ b/ctr-std/src/lib.rs @@ -4,8 +4,8 @@ #![feature(cfg_target_has_atomic)] #![feature(cfg_target_thread_local)] #![feature(collections)] -#![feature(collections_bound)] #![feature(collections_range)] +#![feature(core_float)] #![feature(const_fn)] #![feature(compiler_builtins_lib)] #![feature(core_intrinsics)] @@ -44,6 +44,7 @@ #![allow(non_camel_case_types, dead_code, unused_features)] #![no_std] + #![stable(feature = "rust1", since = "1.0.0")] #[prelude_import] |