# 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" version = "7.0.2" authors = ["Alex Huszagh "] build = false exclude = [ "assets/*", "docs/*", "etc/*", "cargo-timing*.html", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Lexical, to- and from-string conversion routines." readme = "README.md" keywords = [ "parsing", "lexical", "encoding", "no_std", ] categories = [ "parsing", "encoding", "no-std", "value-formatting", ] license = "MIT/Apache-2.0" repository = "https://github.com/Alexhuszagh/rust-lexical" [package.metadata.docs.rs] features = [ "radix", "format", "write-integers", "write-floats", "parse-integers", "parse-floats", ] [lib] name = "lexical" path = "src/lib.rs" [[test]] name = "api_tests" path = "tests/api_tests.rs" [dependencies.lexical-core] version = "1.0.2" default-features = false [features] compact = ["lexical-core/compact"] default = [ "std", "write-integers", "write-floats", "parse-integers", "parse-floats", ] f128 = ["lexical-core/f128"] f16 = ["lexical-core/f16"] floats = ["lexical-core/floats"] format = ["lexical-core/format"] integers = ["lexical-core/integers"] lint = ["lexical-core/lint"] parse = ["lexical-core/parse"] parse-floats = [ "lexical-core/parse-floats", "parse", "floats", ] parse-integers = [ "lexical-core/parse-integers", "parse", "integers", ] power-of-two = ["lexical-core/power-of-two"] radix = ["lexical-core/radix"] std = ["lexical-core/std"] write = ["lexical-core/write"] write-floats = [ "lexical-core/write-floats", "write", "floats", ] write-integers = [ "lexical-core/write-integers", "write", "integers", ]