Cargo Features
[dependencies]
fid-rs = { version = "0.2.0", default-features = false, features = ["rayon", "serde", "mem_dbg"] }
- default = rayon
-
The
rayon
feature is set by default wheneverfid-rs
is added without
somewhere in the dependency tree.default-features = false
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.
- rayon default
-
Enables rayon
Rayon is an optional feature, which is enabled by default.
It is used to crate the Chunks collection in parallel. - serde implicit feature
-
Enables serde
Serde is another optional feature, which can be enabled by setting
serde
feature. It is used to serialize and deserialize the FID structure. - mem_dbg implicit feature
-
Enables mem_dbg ^0.1.4