diff options
| author | Ronald Kinard <[email protected]> | 2017-02-23 19:58:09 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-02-23 19:58:09 -0600 |
| commit | 1cbe822472b958c4d3f1e1af2b301c012a228b3c (patch) | |
| tree | 96bf27225807938ef4cf923732e456bb6db0c98a /ctr-std/src/lib.rs | |
| parent | Merge pull request #21 from FenrirWolf/mutex (diff) | |
| parent | Overhaul Instant impl (diff) | |
| download | archived-ctru-rs-1cbe822472b958c4d3f1e1af2b301c012a228b3c.tar.xz archived-ctru-rs-1cbe822472b958c4d3f1e1af2b301c012a228b3c.zip | |
Merge pull request #18 from FenrirWolf/time
ctr-std: add time module
Diffstat (limited to 'ctr-std/src/lib.rs')
| -rw-r--r-- | ctr-std/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ctr-std/src/lib.rs b/ctr-std/src/lib.rs index d4dfd45..64d76a2 100644 --- a/ctr-std/src/lib.rs +++ b/ctr-std/src/lib.rs @@ -16,6 +16,7 @@ #![feature(int_error_internals)] #![feature(lang_items)] #![feature(macro_reexport)] +#![feature(oom)] #![feature(optin_builtin_traits)] #![feature(prelude_import)] #![feature(raw)] @@ -151,6 +152,7 @@ pub mod num; pub mod os; pub mod path; pub mod sync; +pub mod time; // Platform-abstraction modules #[macro_use] |