Cargo Features

[dependencies]
nephele = { version = "0.0.2", default-features = false, features = ["std", "alloc"] }
default = pin-project-lite, std

These default features are set whenever nephele is added without default-features = false somewhere in the dependency tree.

std default = alloc

Enables std of memchr

memchr:

The 'std' feature permits the memchr crate to use the standard library. This permits this crate to use runtime CPU feature detection to automatically accelerate searching via vector instructions. Without the standard library,
this automatic detection is not possible.

alloc std = pin-project-lite

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

pin-project-lite default alloc?