• 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 = "2021"
14rust-version = "1.62"
15name = "prettyplease"
16version = "0.2.31"
17authors = ["David Tolnay <dtolnay@gmail.com>"]
18build = "build.rs"
19links = "prettyplease02"
20exclude = ["cargo-expand"]
21autolib = false
22autobins = false
23autoexamples = false
24autotests = false
25autobenches = false
26description = "A minimal `syn` syntax tree pretty-printer"
27documentation = "https://docs.rs/prettyplease"
28readme = "README.md"
29keywords = ["rustfmt"]
30categories = ["development-tools"]
31license = "MIT OR Apache-2.0"
32repository = "https://github.com/dtolnay/prettyplease"
33
34[package.metadata.docs.rs]
35rustdoc-args = [
36    "--generate-link-to-definition",
37    "--extern-html-root-url=core=https://doc.rust-lang.org",
38    "--extern-html-root-url=alloc=https://doc.rust-lang.org",
39    "--extern-html-root-url=std=https://doc.rust-lang.org",
40]
41targets = ["x86_64-unknown-linux-gnu"]
42
43[package.metadata.playground]
44features = ["verbatim"]
45
46[features]
47verbatim = ["syn/parsing"]
48
49[lib]
50name = "prettyplease"
51path = "src/lib.rs"
52
53[[test]]
54name = "test"
55path = "tests/test.rs"
56
57[[test]]
58name = "test_precedence"
59path = "tests/test_precedence.rs"
60
61[dependencies.proc-macro2]
62version = "1.0.80"
63default-features = false
64
65[dependencies.syn]
66version = "2.0.96"
67features = ["full"]
68default-features = false
69
70[dev-dependencies.indoc]
71version = "2"
72
73[dev-dependencies.proc-macro2]
74version = "1.0.80"
75default-features = false
76
77[dev-dependencies.quote]
78version = "1.0.35"
79default-features = false
80
81[dev-dependencies.syn]
82version = "2.0.96"
83features = [
84    "clone-impls",
85    "extra-traits",
86    "parsing",
87    "printing",
88    "visit-mut",
89]
90default-features = false
91