Cargo Features

[dependencies]
kaparser = { version = "0.0.1", default-features = false, features = ["std", "unicode"] }
default = std, unicode

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

std default

Enables std of memchr and simdutf8

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.

unicode default

Enables unicode-ident and unicode-segmentation

kaparser has 3 features without comments.