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

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 over no_std.

Enables libm of lambert_w

std

Enables std of lambert_w

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.