diff options
| author | Fenrir <[email protected]> | 2016-08-12 15:59:22 -0700 |
|---|---|---|
| committer | Fenrir <[email protected]> | 2016-08-12 15:59:22 -0700 |
| commit | 0c8a465e930f3aabfda39540e9eae22425c1cfe2 (patch) | |
| tree | 0d82b31285f973c323f4d9ff7ceb5268e839b22b /src/lib.rs | |
| parent | Merge pull request #9 from FenrirWolf/master (diff) | |
| download | ctru-rs-0c8a465e930f3aabfda39540e9eae22425c1cfe2.tar.xz ctru-rs-0c8a465e930f3aabfda39540e9eae22425c1cfe2.zip | |
Add Path and OsString APIs
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 23 |
1 files changed, 19 insertions, 4 deletions
@@ -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; |