aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 7fa8597d67c192fcf5dcbb9dfcd0386e15508fac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#![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 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 ascii;
pub mod ffi;
pub mod panic;
pub mod path;

mod sys;

pub use srv::Srv;
pub use gfx::Gfx;
pub use sdmc::Sdmc;