Cargo Features
[dependencies]
rand-compat = { version = "0.1.1", default-features = false, features = ["std"] }
- default = std
-
The
std
feature is set by default wheneverrand-compat
is added without
somewhere in the dependency tree.default-features = false - std default
-
Enables std of rand ^0.7.0, rand ^0.8.0, rand_core ^0.5.0, and rand_core ^0.6.0
rand:
Option (enabled by default): without "std" rand uses libcore; this option enables functionality expected to be available on a standard platform.
rand-compat has 2 features without comments.