[package]
authors = ["Alex Huszagh <ahuszagh@gmail.com>"]
autobenches = false
categories = ["parsing", "no-std"]
description = "Efficient parsing of floats from strings."
edition = "2018"
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"
exclude = [
"assets/*",
"docs/*",
"etc/*",
"cargo-timing*.html"
]
[dependencies.lexical-util]
version = "1.0.3"
path = "../lexical-util"
default-features = false
features = ["parse-floats"]
[dependencies.lexical-parse-integer]
version = "1.0.2"
path = "../lexical-parse-integer"
default-features = false
features = []
[dependencies]
static_assertions = "1"
[dev-dependencies]
quickcheck = { git = "https://github.com/neithernut/quickcheck/", branch = "i32min-shrink-bound" }
proptest = ">=1.5.0"
[features]
default = ["std"]
std = [
"lexical-util/std",
"lexical-parse-integer/std"
]
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"
]
format = [
"lexical-util/format",
"lexical-parse-integer/format"
]
compact = [
"lexical-util/compact",
"lexical-parse-integer/compact"
]
f16 = ["lexical-util/f16"]
lint = [
"lexical-util/lint",
"lexical-parse-integer/lint"
]
f128 = ["lexical-util/f128"]
[package.metadata.docs.rs]
features = ["radix", "format"]