Cargo Features
[dependencies]
float-pigment-consistent-bincode = { version = "0.2.0", default-features = false, features = ["std"] }
- default = std
-
The
std
feature is set by default wheneverfloat-pigment-consistent-bincode
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of byteorder, serde, and serde_bytes
serde:
Provide impls for common standard library types like Vec<T> and HashMap<K, V>.
Requires a dependency on the Rust standard library.Affects
float-pigment-consistent-bincode::serialize_into
,float-pigment-consistent-bincode::deserialize_from
…