# 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-util" version = "1.0.3" authors = ["Alex Huszagh "] build = false exclude = [ "assets/*", "docs/*", "etc/*", "cargo-timing*.html", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Shared utilities for lexical creates." readme = "README.md" keywords = ["no_std"] categories = [ "value-formatting", "encoding", "no-std", ] 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_util" path = "src/lib.rs" [[test]] name = "algorithm_tests" path = "tests/algorithm_tests.rs" [[test]] name = "ascii_tests" path = "tests/ascii_tests.rs" [[test]] name = "bf16_tests" path = "tests/bf16_tests.rs" [[test]] name = "digit_tests" path = "tests/digit_tests.rs" [[test]] name = "div128_tests" path = "tests/div128_tests.rs" [[test]] name = "f16_tests" path = "tests/f16_tests.rs" [[test]] name = "feature_format_tests" path = "tests/feature_format_tests.rs" [[test]] name = "format_builder_tests" path = "tests/format_builder_tests.rs" [[test]] name = "format_flags_tests" path = "tests/format_flags_tests.rs" [[test]] name = "iterator_tests" path = "tests/iterator_tests.rs" [[test]] name = "mul_tests" path = "tests/mul_tests.rs" [[test]] name = "not_feature_format_tests" path = "tests/not_feature_format_tests.rs" [[test]] name = "num_tests" path = "tests/num_tests.rs" [[test]] name = "skip_tests" path = "tests/skip_tests.rs" [[test]] name = "util" path = "tests/util.rs" [dependencies.static_assertions] version = "1" [dev-dependencies.proptest] version = ">=1.5.0" [features] compact = [] default = ["std"] f128 = [ "parse-floats", "write-floats", ] f16 = [ "parse-floats", "write-floats", ] floats = [] format = [] integers = [] lint = [] parse = [] parse-floats = [ "parse", "floats", ] parse-integers = [ "parse", "integers", ] power-of-two = [] radix = ["power-of-two"] std = [] write = [] write-floats = [ "write", "floats", ] write-integers = [ "write", "integers", ]