1 | [package] |
2 | name = "itoa" |
3 | version = "1.0.15" |
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 | [package.metadata.docs.rs] |
19 | targets = ["x86_64-unknown-linux-gnu" ] |
20 | rustdoc-args = [ |
21 | "--generate-link-to-definition" , |
22 | "--extern-html-root-url=core=https://doc.rust-lang.org" , |
23 | "--extern-html-root-url=alloc=https://doc.rust-lang.org" , |
24 | "--extern-html-root-url=std=https://doc.rust-lang.org" , |
25 | ] |
26 | |