1 | [package] |
2 | name = "itoa" |
3 | version = "1.0.10" |
4 | authors = ["David Tolnay <dtolnay@gmail.com>" ] |
5 | categories = ["value-formatting" , "no-std" , "no-std::no-alloc" ] |
6 | description = "Fast integer primitive to string conversion" |
7 | documentation = "https://docs.rs/itoa" |
8 | edition = "2018" |
9 | exclude = ["performance.png" , "chart/**" ] |
10 | keywords = ["integer" ] |
11 | license = "MIT OR Apache-2.0" |
12 | repository = "https://github.com/dtolnay/itoa" |
13 | rust-version = "1.36" |
14 | |
15 | [dependencies] |
16 | no-panic = { version = "0.1" , optional = true } |
17 | |
18 | [lib] |
19 | doc-scrape-examples = false |
20 | |
21 | [package.metadata.docs.rs] |
22 | targets = ["x86_64-unknown-linux-gnu" ] |
23 | rustdoc-args = ["--generate-link-to-definition" ] |
24 | |