Cargo Features

[dependencies]
lexical-write-integer = { version = "1.0.2", default-features = false, features = ["std", "power-of-two", "radix", "format", "compact", "lint"] }
default = std

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

std default

Use the standard library.

Enables std of lexical-util

power-of-two radix?

Add support for writing power-of-two integer strings.

Enables power-of-two of lexical-util

Affects write::WriteInteger

radix = power-of-two

Add support for writing non-decimal integer strings.

Enables radix of lexical-util

Affects table_radix::get_table

format

Add support for writing custom integer formats.

Enables format of lexical-util

compact

Reduce code size at the cost of performance.

Enables compact of lexical-util

Affects write::WriteInteger

lint

INTERNAL ONLY
-------------
Internal only features. These are not meant to be used directly.
Enable the lint checks.

Enables lint of lexical-util