106 lines
2.1 KiB
TOML
106 lines
2.1 KiB
TOML
# 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-integer"
|
|
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 integers 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",
|
|
]
|
|
rustdoc-args = [
|
|
"--cfg",
|
|
"docsrs",
|
|
]
|
|
|
|
[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"
|
|
|
|
[[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"
|
|
|
|
[dependencies.lexical-util]
|
|
version = "1.0.7"
|
|
features = ["parse-integers"]
|
|
default-features = false
|