# 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 = "2018" name = "lexical-parse-integer" version = "1.0.2" authors = ["Alex Huszagh "] build = false exclude = [ "assets/*", "docs/*", "etc/*", "cargo-timing*.html", ] 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", ] [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.3" features = ["parse-integers"] default-features = false [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"]