1 | [package] |
2 | name = "prettyplease" |
3 | version = "0.2.16" |
4 | authors = ["David Tolnay <dtolnay@gmail.com>" ] |
5 | autoexamples = false |
6 | categories = ["development-tools" ] |
7 | description = "A minimal `syn` syntax tree pretty-printer" |
8 | documentation = "https://docs.rs/prettyplease" |
9 | edition = "2021" |
10 | exclude = ["cargo-expand" ] |
11 | keywords = ["rustfmt" ] |
12 | license = "MIT OR Apache-2.0" |
13 | links = "prettyplease02" |
14 | repository = "https://github.com/dtolnay/prettyplease" |
15 | rust-version = "1.56" |
16 | |
17 | [features] |
18 | verbatim = ["syn/parsing" ] |
19 | |
20 | [dependencies] |
21 | proc-macro2 = { version = "1.0.74" , default-features = false } |
22 | syn = { version = "2.0.46" , default-features = false, features = ["full" ] } |
23 | |
24 | [dev-dependencies] |
25 | indoc = "2" |
26 | proc-macro2 = { version = "1.0.74" , default-features = false } |
27 | quote = { version = "1.0.35" , default-features = false } |
28 | syn = { version = "2.0.46" , default-features = false, features = ["parsing" ] } |
29 | |
30 | [lib] |
31 | doc-scrape-examples = false |
32 | |
33 | [package.metadata.docs.rs] |
34 | targets = ["x86_64-unknown-linux-gnu" ] |
35 | rustdoc-args = ["--generate-link-to-definition" ] |
36 | |
37 | [package.metadata.playground] |
38 | features = ["verbatim" ] |
39 | |
40 | [workspace] |
41 | members = ["cargo-expand/update" , "examples/update" ] |
42 | |