diff options
| author | Vivian Lim <[email protected]> | 2021-02-01 23:16:34 -0800 |
|---|---|---|
| committer | Vivian Lim <[email protected]> | 2021-02-01 23:16:34 -0800 |
| commit | 2a6973571c5c1c4507831580868fe3afae650f8b (patch) | |
| tree | 273ca6657e579a5b3e0878f46ed3f32a32d1e527 | |
| parent | Actually fix every instance of `Qwerty` this time (diff) | |
| download | archived-ctru-rs-2a6973571c5c1c4507831580868fe3afae650f8b.tar.xz archived-ctru-rs-2a6973571c5c1c4507831580868fe3afae650f8b.zip | |
local changes
| -rw-r--r-- | ctru-rs/src/lib.rs | 1 | ||||
| -rw-r--r-- | ctru-sys/src/lib.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ctru-rs/src/lib.rs b/ctru-rs/src/lib.rs index ea7b58e..a5c2321 100644 --- a/ctru-rs/src/lib.rs +++ b/ctru-rs/src/lib.rs @@ -2,6 +2,7 @@ #![crate_name = "ctru"] #![feature(fnbox)] +#![feature(rustc_private)] #[macro_use] extern crate bitflags; diff --git a/ctru-sys/src/lib.rs b/ctru-sys/src/lib.rs index 274d43b..81f3a12 100644 --- a/ctru-sys/src/lib.rs +++ b/ctru-sys/src/lib.rs @@ -3,6 +3,7 @@ #![allow(non_snake_case)] #![feature(const_fn)] +#![feature(rustc_private)] #![no_std] |