aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs23
1 files changed, 19 insertions, 4 deletions
diff --git a/src/lib.rs b/src/lib.rs
index dc225c6..7fa8597 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,20 +1,35 @@
-#![feature(alloc, collections, lang_items)]
+#![feature(alloc)]
+#![feature(collections)]
+#![feature(char_escape_debug)]
+#![feature(lang_items)]
+#![feature(question_mark)]
+#![feature(slice_patterns)]
+#![feature(str_internals)]
+#![feature(unicode)]
+
#![no_std]
+
#![crate_type = "rlib"]
#![crate_name = "ctru"]
-extern crate ctru_sys as libctru;
-
extern crate alloc;
extern crate collections;
+extern crate rustc_unicode;
+
+extern crate ctru_sys as libctru;
pub mod console;
pub mod srv;
pub mod gfx;
+pub mod services;
pub mod sdmc;
-pub mod services;
+pub mod ascii;
+pub mod ffi;
pub mod panic;
+pub mod path;
+
+mod sys;
pub use srv::Srv;
pub use gfx::Gfx;