itoa/Cargo.toml

17 lines
461 B
TOML
Raw Normal View History

2016-06-25 17:32:23 -04:00
[package]
name = "itoa"
2018-03-22 12:56:28 -04:00
version = "0.4.1" # remember to update html_root_url
2016-06-25 17:32:23 -04:00
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Fast functions for printing integer primitives to an io::Write"
repository = "https://github.com/dtolnay/itoa"
documentation = "https://github.com/dtolnay/itoa"
2017-02-05 08:47:25 -05:00
categories = ["value-formatting"]
2017-08-22 22:45:13 -04:00
readme = "README.md"
2017-08-22 22:43:34 -04:00
exclude = ["performance.png"]
2017-09-12 16:52:24 -04:00
[features]
2018-03-16 21:14:54 -04:00
default = ["std"]
2017-09-12 16:52:24 -04:00
i128 = []
2018-03-16 21:14:54 -04:00
std = []