Cargo Features
[dependencies]
special = { version = "0.11.2", default-features = false, features = ["std", "no_std"] }
- default = no_std
-
The
no_std
feature is set by default wheneverspecial
is added without
somewhere in the dependency tree.default-features = false - std
-
Enables std of lambert_w ^0.5.4
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. - no_std default
-
Enables libm of lambert_w ^0.5.4
lambert_w:
If the
std
feature is disabled, this feature uses thelibm
crate to compute square roots and logarithms during function evaluation instead of the standard library.
Special has 3 features without comments.