# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
rust-version = "1.60.0"
name = "lexical-parse-float"
version = "1.0.6"
authors = ["Alex Huszagh <ahuszagh@gmail.com>"]
build = false
exclude = [
"assets/*",
"docs/*",
"etc/*",
"cargo-timing*.html",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Efficient parsing of floats from strings."
readme = "README.md"
keywords = [
"parsing",
"lexical",
"no_std",
]
categories = [
"parsing",
"no-std",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/Alexhuszagh/rust-lexical"
[package.metadata.docs.rs]
features = [
"radix",
"format",
"f16",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[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"
[[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"
[dependencies.lexical-parse-integer]
version = "1.0.6"
features = []
default-features = false
[dependencies.lexical-util]
version = "1.0.7"
features = ["parse-floats"]
default-features = false