aboutsummaryrefslogtreecommitdiff
path: root/ctr-std/src/lib.rs
diff options
context:
space:
mode:
authorRonald Kinard <[email protected]>2017-02-23 19:58:09 -0600
committerGitHub <[email protected]>2017-02-23 19:58:09 -0600
commit1cbe822472b958c4d3f1e1af2b301c012a228b3c (patch)
tree96bf27225807938ef4cf923732e456bb6db0c98a /ctr-std/src/lib.rs
parentMerge pull request #21 from FenrirWolf/mutex (diff)
parentOverhaul Instant impl (diff)
downloadarchived-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.rs2
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]