1[package] 2name = "itoa" 3version = "0.4.7" # remember to update html_root_url 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5license = "MIT OR Apache-2.0" 6description = "Fast functions for printing integer primitives to an io::Write" 7repository = "https://github.com/dtolnay/itoa" 8documentation = "https://docs.rs/itoa" 9categories = ["value-formatting"] 10readme = "README.md" 11exclude = ["performance.png"] 12 13[features] 14default = ["std"] 15i128 = [] 16std = [] 17 18[package.metadata.docs.rs] 19targets = ["x86_64-unknown-linux-gnu"] 20