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