blob: 019240193cdcdb0ffa5405915aedabb757d58009 [file] [log] [blame]
Yi Kong8884bbe2020-08-31 01:13:13 +08001[package]
2name = "itoa"
Haibo Huanga4c5ece2020-12-29 20:32:47 -08003version = "0.4.7" # 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"]