blob: 82a1934cc030c49f3cfc01314fc557e615320a33 [file] [log] [blame]
Yi Kong8884bbe2020-08-31 01:13:13 +08001[package]
2name = "itoa"
3version = "0.4.6" # 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://github.com/dtolnay/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"]