| 1 | [package] |
| 2 | name = "prettyplease" |
| 3 | version = "0.2.32" |
| 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.62" |
| 16 | |
| 17 | [features] |
| 18 | verbatim = ["syn/parsing" ] |
| 19 | |
| 20 | [dependencies] |
| 21 | proc-macro2 = { version = "1.0.80" , default-features = false } |
| 22 | syn = { version = "2.0.96" , default-features = false, features = ["full" ] } |
| 23 | |
| 24 | [dev-dependencies] |
| 25 | indoc = "2" |
| 26 | proc-macro2 = { version = "1.0.80" , default-features = false } |
| 27 | quote = { version = "1.0.35" , default-features = false } |
| 28 | syn = { version = "2.0.96" , default-features = false, features = ["clone-impls" , "extra-traits" , "parsing" , "printing" , "visit-mut" ] } |
| 29 | |
| 30 | [package.metadata.docs.rs] |
| 31 | targets = ["x86_64-unknown-linux-gnu" ] |
| 32 | rustdoc-args = [ |
| 33 | "--generate-link-to-definition" , |
| 34 | "--extern-html-root-url=core=https://doc.rust-lang.org" , |
| 35 | "--extern-html-root-url=alloc=https://doc.rust-lang.org" , |
| 36 | "--extern-html-root-url=std=https://doc.rust-lang.org" , |
| 37 | ] |
| 38 | |
| 39 | [package.metadata.playground] |
| 40 | features = ["verbatim" ] |
| 41 | |
| 42 | [workspace] |
| 43 | members = ["cargo-expand/update" , "examples/update" ] |
| 44 | |