Cargo Features

[dependencies]
prse = { version = "1.2.1", default-features = false, features = ["std", "alloc"] }
default = std

The std feature is set by default whenever prse is added without default-features = false somewhere in the dependency tree.

std default = alloc

Enables std of memchr and prse-derive

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

Enables alloc of prse-derive

Prse has 3 features without comments.