[dependencies.static_assertions]
version = "1"
[dev-dependencies.proptest]
version = ">=1.5.0"
[features]
compact = []
default = ["std"]
f128 = ["parse-floats", "write-floats"]
f16 = ["parse-floats", "write-floats"]
floats = []
format = []
integers = []
lint = []
parse = []
parse-floats = ["parse", "floats"]
parse-integers = ["parse", "integers"]
power-of-two = []
radix = ["power-of-two"]
std = []
write = []
write-floats = ["write", "floats"]
write-integers = ["write", "integers"]
[lib]
name = "lexical_util"
path = "src/lib.rs"
[package]
authors = ["Alex Huszagh <ahuszagh@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["value-formatting", "encoding", "no-std"]
description = "Shared utilities for lexical creates."
edition = "2018"
exclude = ["assets/*", "docs/*", "etc/*", "cargo-timing*.html"]
keywords = ["no_std"]
license = "MIT/Apache-2.0"
name = "lexical-util"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical"
version = "1.0.3"
[package.metadata.docs.rs]
features = ["radix", "format", "write-integers", "write-floats", "parse-integers", "parse-floats"]
[[test]]
name = "algorithm_tests"
path = "tests/algorithm_tests.rs"
[[test]]
name = "ascii_tests"
path = "tests/ascii_tests.rs"
[[test]]
name = "bf16_tests"
path = "tests/bf16_tests.rs"
[[test]]
name = "digit_tests"
path = "tests/digit_tests.rs"
[[test]]
name = "div128_tests"
path = "tests/div128_tests.rs"
[[test]]
name = "f16_tests"
path = "tests/f16_tests.rs"
[[test]]
name = "feature_format_tests"
path = "tests/feature_format_tests.rs"
[[test]]
name = "format_builder_tests"
path = "tests/format_builder_tests.rs"
[[test]]
name = "format_flags_tests"
path = "tests/format_flags_tests.rs"
[[test]]
name = "iterator_tests"
path = "tests/iterator_tests.rs"
[[test]]
name = "mul_tests"
path = "tests/mul_tests.rs"
[[test]]
name = "not_feature_format_tests"
path = "tests/not_feature_format_tests.rs"
[[test]]
name = "num_tests"
path = "tests/num_tests.rs"
[[test]]
name = "skip_tests"
path = "tests/skip_tests.rs"
[[test]]
name = "util"
path = "tests/util.rs"