[package]
authors = ["Alex Huszagh <ahuszagh@gmail.com>"]
autobenches = false
categories = ["parsing", "no-std"]
description = "Efficient parsing of integers from strings."
edition = "2018"
keywords = ["parsing", "lexical", "no_std"]
license = "MIT/Apache-2.0"
name = "lexical-parse-integer"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical"
version = "1.0.2"
exclude = [
"assets/*",
"docs/*",
"etc/*",
"cargo-timing*.html"
]
[dependencies]
static_assertions = "1"
[dependencies.lexical-util]
version = "1.0.3"
path = "../lexical-util"
default-features = false
features = ["parse-integers"]
[dev-dependencies]
quickcheck = { git = "https://github.com/neithernut/quickcheck/", branch = "i32min-shrink-bound" }
proptest = ">=1.5.0"
[features]
default = ["std"]
std = ["lexical-util/std"]
power-of-two = ["lexical-util/power-of-two"]
radix = ["lexical-util/radix", "power-of-two"]
format = ["lexical-util/format"]
compact = ["lexical-util/compact"]
lint = ["lexical-util/lint"]
[package.metadata.docs.rs]
features = ["radix", "format"]