Cargo Features

[dependencies]
lazycsv = { version = "0.1.0", default-features = false, features = ["std", "alloc"] }
default = std

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

std default = alloc

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

Enables std of memchr and thiserror

alloc std

The 'alloc' feature enables some APIs that require allocation, such as 'Cell::try_as_str'. Note that this feature does not enable runtime CPU feature
detection. That still requires 'std'.