Cargo Features

[dependencies]
minimal-lexical = { version = "0.2.1", default-features = false, features = ["std", "compact", "alloc", "nightly", "lint"] }
default = std

The std feature is set by default whenever minimal-lexical is added without default-features = false somewhere in the dependency tree.

std default

Use the standard library.

Affects num::powf, num::powd

compact

Reduce code size at the cost of performance.

Affects num::powf, num::powd

alloc

Use the system allocator.

Affects bigint::VecType

nightly

Add support for nightly-only features.

lint

Internal only features.
Enable the lint checks.