lexical-parse-integer 1.0.2

Efficient parsing of integers from strings.
Documentation
[dependencies.lexical-util]
default-features = false
features = ["parse-integers"]
version = "1.0.3"

[dependencies.static_assertions]
version = "1"

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

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

[lib]
name = "lexical_parse_integer"
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 integers from strings."
edition = "2018"
exclude = ["assets/*", "docs/*", "etc/*", "cargo-timing*.html"]
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"

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

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

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

[[test]]
name = "issue_91_tests"
path = "tests/issue_91_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 = "options_tests"
path = "tests/options_tests.rs"

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

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