Cargo Features

[dependencies]
serde-json-wasm = { version = "1.0.1", default-features = false, features = ["std", "unstable"] }
default = std

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

std default

Enables std of serde

serde:

Provide impls for common standard library types like Vec<T> and HashMap<K, V>.
Requires a dependency on the Rust standard library.

unstable

Enables unstable of serde

serde:

Provide impls for types that require unstable functionality. For tracking and discussion of unstable functionality please refer to this issue:

https://github.com/serde-rs/serde/issues/812

serde-json-wasm has 3 features without comments.