diff options
| author | Florian Hahn <flo@fhahn.com> | 2015-12-12 23:38:03 +0100 |
|---|---|---|
| committer | Florian Hahn <flo@fhahn.com> | 2015-12-18 13:32:14 +0100 |
| commit | ca52c56e346a2a2bb042bec441b5058df3e3e289 (patch) | |
| tree | a7717cc94aaae682b5c9c5dba8c6bd42c0cb7cc8 /src/libstd/lib.rs | |
| parent | 27d551142f9e3cd2fc402555a8f6287dd0fc01ac (diff) | |
| download | rust-ca52c56e346a2a2bb042bec441b5058df3e3e289.tar.gz rust-ca52c56e346a2a2bb042bec441b5058df3e3e289.zip | |
Add memchr implemenation based on rust-memchr to libstd
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 0f8b2f6e17b..eba0c799cd2 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -248,6 +248,7 @@ #![feature(link_args)] #![feature(linkage)] #![feature(macro_reexport)] +#![feature(num_bits_bytes)] #![feature(on_unimplemented)] #![feature(oom)] #![feature(optin_builtin_traits)] @@ -429,6 +430,7 @@ pub mod path; pub mod process; pub mod sync; pub mod time; +mod memchr; #[macro_use] #[path = "sys/common/mod.rs"] mod sys_common; |
