Cargo Features
[dependencies]
special = { version = "0.11.4", default-features = false, features = ["no_std", "std"] }
- default = no_std
-
The
no_std
feature is set by default wheneverspecial
is added without
somewhere in the dependency tree.default-features = false - no_std default
-
If one of the two features is disabled, the other one must be enabled. If both features are enabled,
std
takes precedence overno_std
. - std
-
lambert_w:
Use the standard library to compute square roots and logarithms for a potential performance gain. When this feature is disabled the crate is
no_std
compatible.