diff options
| author | Fenrir <[email protected]> | 2017-02-20 22:24:01 -0700 |
|---|---|---|
| committer | Fenrir <[email protected]> | 2017-02-20 22:24:01 -0700 |
| commit | 1e3655e44af528844be2c4ef32e123be1421c7e4 (patch) | |
| tree | e7432275077b8ba29b39160eec9a17cab62e8138 /ctr-std/src/lib.rs | |
| parent | Merge pull request #19 from FenrirWolf/thread_local (diff) | |
| download | ctru-rs-1e3655e44af528844be2c4ef32e123be1421c7e4.tar.xz ctru-rs-1e3655e44af528844be2c4ef32e123be1421c7e4.zip | |
Add sync::mutex
Diffstat (limited to 'ctr-std/src/lib.rs')
| -rw-r--r-- | ctr-std/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ctr-std/src/lib.rs b/ctr-std/src/lib.rs index e0058f5..d4dfd45 100644 --- a/ctr-std/src/lib.rs +++ b/ctr-std/src/lib.rs @@ -9,8 +9,10 @@ #![feature(compiler_builtins_lib)] #![feature(core_intrinsics)] #![feature(char_escape_debug)] +#![feature(dropck_eyepatch)] #![feature(float_extras)] #![feature(fused)] +#![feature(generic_param_attrs)] #![feature(int_error_internals)] #![feature(lang_items)] #![feature(macro_reexport)] @@ -51,6 +53,7 @@ extern crate compiler_builtins; // 3ds-specific dependencies extern crate ctr_libc as libc; +extern crate ctru_sys as libctru; // stealing spin's mutex implementation for now extern crate spin; |