Cargo Features
[dependencies]
collectivity = { version = "3.2.2", default-features = false, features = ["std", "dashmap", "serde_json", "simd-json", "slab", "smallvec"] }
- default = std
-
The
std
feature is set by default whenevercollectivity
is added without
somewhere in the dependency tree.default-features = false - std default
Features from optional dependencies
- dashmap implicit feature
-
Enables dashmap ^4.0.2
dashmap:
Blazing fast concurrent HashMap for Rust
- serde_json implicit feature
-
Enables serde_json
serde_json:
A JSON serialization file format
- simd-json implicit feature
-
Enables simd-json ^0.4.3
simd-json:
High performance JSON parser based on a port of simdjson
- slab implicit feature
-
Enables slab
slab:
Pre-allocated storage for a uniform data type
- smallvec implicit feature
-
Enables smallvec
smallvec:
'Small vector' optimization: store up to a small number of items on the stack