Cargo Features
[dependencies]
redis-protocol-mm = { version = "4.2.0", default-features = false, features = ["std", "alloc", "index-map", "decode-mut", "libm", "hashbrown"] }
- default = std
-
The
std
feature is set by default wheneverredis-protocol-mm
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables bytes, cookie-factory and nom, std of bytes-utils
Affects
utils::digits_in_number
… - alloc
- index-map = indexmap
-
Affects
types::FrameMap
,types::FrameSet
,utils::new_set
,utils::new_map
,utils::hashmap_to_frame_map
,utils::hashset_to_frame_set
… - decode-logs decode-mut
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- indexmap index-map?
-
Enables indexmap ^1.6
- libm implicit feature
-
Enables libm
libm:
libm in pure Rust
Affects
utils::digits_in_number
… - hashbrown implicit feature
-
Enables hashbrown ^0.13.2
hashbrown:
A Rust port of Google's SwissTable hash map