diff options
| author | Fenrir <[email protected]> | 2017-02-01 02:01:40 -0700 |
|---|---|---|
| committer | Fenrir <[email protected]> | 2017-02-01 02:01:40 -0700 |
| commit | c8d69a25e766d7bd1f96e1edeb03dd737b07cdb1 (patch) | |
| tree | c9c0f20d791df16421f53fa4c9e39b0d04a1b018 /ctr-std/src/lib.rs | |
| parent | Merge pull request #15 from FenrirWolf/std (diff) | |
| download | ctru-rs-c8d69a25e766d7bd1f96e1edeb03dd737b07cdb1.tar.xz ctru-rs-c8d69a25e766d7bd1f96e1edeb03dd737b07cdb1.zip | |
ctr-std: add collections module
Diffstat (limited to 'ctr-std/src/lib.rs')
| -rw-r--r-- | ctr-std/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ctr-std/src/lib.rs b/ctr-std/src/lib.rs index b43e108..a2e200b 100644 --- a/ctr-std/src/lib.rs +++ b/ctr-std/src/lib.rs @@ -2,6 +2,8 @@ #![feature(allow_internal_unstable)] #![feature(box_syntax)] #![feature(collections)] +#![feature(collections_bound)] +#![feature(collections_range)] #![feature(const_fn)] #![feature(compiler_builtins_lib)] #![feature(core_intrinsics)] @@ -135,6 +137,7 @@ pub mod f32; pub mod f64; pub mod ascii; +pub mod collections; pub mod error; pub mod ffi; pub mod io; |