aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFenrir <[email protected]>2016-06-07 16:28:13 -0700
committerFenrir <[email protected]>2016-06-07 16:28:13 -0700
commit9f8dc9fa5a5302eeb6e1c11ea55dcecc4e981516 (patch)
treeef5ffbbc26704028b20a79d6120e170d680dc631 /src
parentRe-introduced RAII semeantics for {Apt, Hid, Sdmc} (diff)
downloadctru-rs-9f8dc9fa5a5302eeb6e1c11ea55dcecc4e981516.tar.xz
ctru-rs-9f8dc9fa5a5302eeb6e1c11ea55dcecc4e981516.zip
Remove extern crate alloc and core declarations
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 2bec58d..43d72a7 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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;