itoa/Cargo.toml

24 lines
649 B
TOML
Raw Normal View History

2016-06-25 17:32:23 -04:00
[package]
name = "itoa"
2024-03-26 02:00:42 -04:00
version = "1.0.11"
2016-06-25 17:32:23 -04:00
authors = ["David Tolnay <dtolnay@gmail.com>"]
2023-07-03 14:20:43 -04:00
categories = ["value-formatting", "no-std", "no-std::no-alloc"]
2021-12-12 00:17:45 -05:00
description = "Fast integer primitive to string conversion"
documentation = "https://docs.rs/itoa"
2021-12-11 03:14:08 -05:00
edition = "2018"
2022-07-31 22:19:03 -04:00
exclude = ["performance.png", "chart/**"]
2022-08-02 13:38:55 -04:00
keywords = ["integer"]
2022-07-31 22:19:03 -04:00
license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/itoa"
rust-version = "1.36"
2017-09-12 16:52:24 -04:00
[dependencies]
no-panic = { version = "0.1", optional = true }
[lib]
doc-scrape-examples = false
2020-03-17 16:23:09 -04:00
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]