# 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.63.0" name = "lexical-write-integer" version = "1.0.5" authors = ["Alex Huszagh "] build = false exclude = [ "assets/*", "docs/*", "etc/*", "cargo-timing*.html", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Efficient formatting of integers to strings." readme = "README.md" keywords = [ "encoding", "lexical", "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", ] [lib] name = "lexical_write_integer" path = "src/lib.rs" [[test]] name = "api_tests" path = "tests/api_tests.rs" [[test]] name = "decimal_tests" path = "tests/decimal_tests.rs" [[test]] name = "digit_count_tests" path = "tests/digit_count_tests.rs" [[test]] name = "options_tests" path = "tests/options_tests.rs" [[test]] name = "radix_tests" path = "tests/radix_tests.rs" [[test]] name = "util" path = "tests/util.rs" [dependencies.lexical-util] version = "1.0.5" features = ["write-integers"] default-features = false [dependencies.static_assertions] version = "1.1.0" [dev-dependencies.proptest] version = ">=1.5.0" [dev-dependencies.rustversion] version = ">=1.0.18" [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"]