Cargo Features
[dependencies]
json-escape = { version = "0.3.1", default-features = false, features = ["std", "alloc", "simd"] }
- default = std
-
The
stdfeature is set by default wheneverjson-escapeis added withoutsomewhere in the dependency tree.default-features = false - std default = alloc
-
Affects
stream::ReadChunkSource… - alloc std
- simd
-
This feature is enabled automatically by build.rs when using a nightly toolchain. You can also enable it manually with
cargo build --features simd.