Cargo Features
[dependencies]
brids = { version = "0.5.1", default-features = false, features = ["std", "serde", "rand"] }
- default = std
-
The
std
feature is set by default wheneverbrids
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of optional rand and optional serde
rand:
Option (enabled by default): without "std" rand uses libcore; this option enables functionality expected to be available on a standard platform.