From 0c8a465e930f3aabfda39540e9eae22425c1cfe2 Mon Sep 17 00:00:00 2001 From: Fenrir Date: Fri, 12 Aug 2016 15:59:22 -0700 Subject: Add Path and OsString APIs --- src/lib.rs | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) (limited to 'src/lib.rs') 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; -- cgit v1.2.3