Skip to content

Commit ca52c56

Browse files
committed
Add memchr implemenation based on rust-memchr to libstd
1 parent 27d5511 commit ca52c56

File tree

2 files changed

+402
-0
lines changed

2 files changed

+402
-0
lines changed

src/libstd/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@
248248
#![feature(link_args)]
249249
#![feature(linkage)]
250250
#![feature(macro_reexport)]
251+
#![feature(num_bits_bytes)]
251252
#![feature(on_unimplemented)]
252253
#![feature(oom)]
253254
#![feature(optin_builtin_traits)]
@@ -429,6 +430,7 @@ pub mod path;
429430
pub mod process;
430431
pub mod sync;
431432
pub mod time;
433+
mod memchr;
432434

433435
#[macro_use]
434436
#[path = "sys/common/mod.rs"] mod sys_common;

0 commit comments

Comments
 (0)