lexical-parse-float 1.0.2

Efficient parsing of floats from strings.
Documentation
[dependencies.lexical-parse-integer]
default-features = false
features = []
version = "1.0.2"

[dependencies.lexical-util]
default-features = false
features = ["parse-floats"]
version = "1.0.3"

[dependencies.static_assertions]
version = "1"

[dev-dependencies.proptest]
version = ">=1.5.0"

[features]
compact = ["lexical-util/compact", "lexical-parse-integer/compact"]
default = ["std"]
f128 = ["lexical-util/f128"]
f16 = ["lexical-util/f16"]
format = ["lexical-util/format", "lexical-parse-integer/format"]
lint = ["lexical-util/lint", "lexical-parse-integer/lint"]
power-of-two = ["lexical-util/power-of-two", "lexical-parse-integer/power-of-two"]
radix = ["lexical-util/radix", "lexical-parse-integer/radix", "power-of-two"]
std = ["lexical-util/std", "lexical-parse-integer/std"]

[lib]
name = "lexical_parse_float"
path = "src/lib.rs"

[package]
authors = ["Alex Huszagh <ahuszagh@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["parsing", "no-std"]
description = "Efficient parsing of floats from strings."
edition = "2018"
exclude = ["assets/*", "docs/*", "etc/*", "cargo-timing*.html"]
keywords = ["parsing", "lexical", "no_std"]
license = "MIT/Apache-2.0"
name = "lexical-parse-float"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical"
version = "1.0.2"

[package.metadata.docs.rs]
features = ["radix", "format"]

[[test]]
name = "api_tests"
path = "tests/api_tests.rs"

[[test]]
name = "bellerophon"
path = "tests/bellerophon.rs"

[[test]]
name = "bellerophon_radix_tests"
path = "tests/bellerophon_radix_tests.rs"

[[test]]
name = "bellerophon_tests"
path = "tests/bellerophon_tests.rs"

[[test]]
name = "bigfloat_tests"
path = "tests/bigfloat_tests.rs"

[[test]]
name = "bigint_tests"
path = "tests/bigint_tests.rs"

[[test]]
name = "binary_tests"
path = "tests/binary_tests.rs"

[[test]]
name = "float_tests"
path = "tests/float_tests.rs"

[[test]]
name = "issue_96_tests"
path = "tests/issue_96_tests.rs"

[[test]]
name = "issue_98_tests"
path = "tests/issue_98_tests.rs"

[[test]]
name = "lemire_tests"
path = "tests/lemire_tests.rs"

[[test]]
name = "libm_tests"
path = "tests/libm_tests.rs"

[[test]]
name = "limits_tests"
path = "tests/limits_tests.rs"

[[test]]
name = "mask_tests"
path = "tests/mask_tests.rs"

[[test]]
name = "number_tests"
path = "tests/number_tests.rs"

[[test]]
name = "options_tests"
path = "tests/options_tests.rs"

[[test]]
name = "parse_tests"
path = "tests/parse_tests.rs"

[[test]]
name = "shared_tests"
path = "tests/shared_tests.rs"

[[test]]
name = "slow_tests"
path = "tests/slow_tests.rs"

[[test]]
name = "stackvec"
path = "tests/stackvec.rs"

[[test]]
name = "stackvec_tests"
path = "tests/stackvec_tests.rs"

[[test]]
name = "util"
path = "tests/util.rs"