1[package] 2name = "itoa" 3version = "1.0.5" # remember to update html_root_url 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5categories = ["value-formatting", "no-std"] 6description = "Fast integer primitive to string conversion" 7documentation = "https://docs.rs/itoa" 8edition = "2018" 9exclude = ["performance.png", "chart/**"] 10keywords = ["integer"] 11license = "MIT OR Apache-2.0" 12repository = "https://github.com/dtolnay/itoa" 13rust-version = "1.36" 14 15[dependencies] 16no-panic = { version = "0.1", optional = true } 17 18[package.metadata.docs.rs] 19targets = ["x86_64-unknown-linux-gnu"] 20