• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14rust-version = "1.36"
15name = "itoa"
16version = "1.0.15"
17authors = ["David Tolnay <dtolnay@gmail.com>"]
18build = false
19exclude = [
20    "performance.png",
21    "chart/**",
22]
23autolib = false
24autobins = false
25autoexamples = false
26autotests = false
27autobenches = false
28description = "Fast integer primitive to string conversion"
29documentation = "https://docs.rs/itoa"
30readme = "README.md"
31keywords = ["integer"]
32categories = [
33    "value-formatting",
34    "no-std",
35    "no-std::no-alloc",
36]
37license = "MIT OR Apache-2.0"
38repository = "https://github.com/dtolnay/itoa"
39
40[package.metadata.docs.rs]
41rustdoc-args = [
42    "--generate-link-to-definition",
43    "--extern-html-root-url=core=https://doc.rust-lang.org",
44    "--extern-html-root-url=alloc=https://doc.rust-lang.org",
45    "--extern-html-root-url=std=https://doc.rust-lang.org",
46]
47targets = ["x86_64-unknown-linux-gnu"]
48
49[lib]
50name = "itoa"
51path = "src/lib.rs"
52
53[[test]]
54name = "test"
55path = "tests/test.rs"
56
57[[bench]]
58name = "bench"
59path = "benches/bench.rs"
60
61[dependencies.no-panic]
62version = "0.1"
63optional = true
64