blob: 2781d7c914655369328224ee3e314b267fa2d514 [file] [log] [blame]
Yi Kong8884bbe2020-08-31 01:13:13 +08001[package]
2name = "itoa"
Joel Galenson2aa19112021-09-22 11:09:12 -07003version = "0.4.8" # remember to update html_root_url
Yi Kong8884bbe2020-08-31 01:13:13 +08004authors = ["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"
Haibo Huanga4c5ece2020-12-29 20:32:47 -08008documentation = "https://docs.rs/itoa"
Yi Kong8884bbe2020-08-31 01:13:13 +08009categories = ["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"]