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 whenever special is added without default-features = false somewhere in the dependency tree.

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 the libm crate to compute square roots and logarithms during function evaluation instead of the standard library.

Special has 3 features without comments.