diff options
| author | Fenrir <[email protected]> | 2016-06-07 16:28:13 -0700 |
|---|---|---|
| committer | Fenrir <[email protected]> | 2016-06-07 16:28:13 -0700 |
| commit | 9f8dc9fa5a5302eeb6e1c11ea55dcecc4e981516 (patch) | |
| tree | ef5ffbbc26704028b20a79d6120e170d680dc631 /src | |
| parent | Re-introduced RAII semeantics for {Apt, Hid, Sdmc} (diff) | |
| download | ctru-rs-9f8dc9fa5a5302eeb6e1c11ea55dcecc4e981516.tar.xz ctru-rs-9f8dc9fa5a5302eeb6e1c11ea55dcecc4e981516.zip | |
Remove extern crate alloc and core declarations
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib.rs | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1,12 +1,8 @@ -#![feature(lang_items, alloc, collections, macro_reexport, allow_internal_unstable)] +#![feature(lang_items)] #![no_std] #![crate_type = "rlib"] #![crate_name = "ctru"] -extern crate alloc; -#[macro_reexport(format, vec)] -extern crate collections; - extern crate ctru_sys as libctru; pub mod console; |