I ran into an issue where memchr's fallback implementation of the memchr function didn't work with what I'm targeting. Using libc's version requires the libc feature to be turned on, which it is by default. However, this crate puts default-features = false, which makes sense because default-features includes use_std, but it excludes libc.
I ran into an issue where memchr's fallback implementation of the
memchr
function didn't work with what I'm targeting. Using libc's version requires thelibc
feature to be turned on, which it is by default. However, this crate putsdefault-features = false
, which makes sense because default-features includesuse_std
, but it excludeslibc
.