Cargo Features
[dependencies]
manifile = { version = "0.0.0", default-features = false, features = ["std", "alloc", "hashbrown", "serde"] }
- default = std
-
The
std
feature is set by default whenevermanifile
is added without
somewhere in the dependency tree.default-features = false - std default = thiserror
-
Affects
file::BackedFileError
,file::BackedFile.open
,manifile::DefaultBackedFile
,manifest::wiscask
,manifest::lsm
… - alloc
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.
- hashbrown implicit feature
-
Enables hashbrown ^0.14
hashbrown:
A Rust port of Google's SwissTable hash map
Affects
manifest::wiscask
,manifest::lsm
… - serde implicit feature
-
Enables serde
serde:
A generic serialization/deserialization framework
- thiserror std
-
Enables thiserror ^1