-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
41 lines (34 loc) · 1.18 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "prettyplease"
version = "0.2.29"
authors = ["David Tolnay <[email protected]>"]
autoexamples = false
categories = ["development-tools"]
description = "A minimal `syn` syntax tree pretty-printer"
documentation = "https://docs.rs/prettyplease"
edition = "2021"
exclude = ["cargo-expand"]
keywords = ["rustfmt"]
license = "MIT OR Apache-2.0"
links = "prettyplease02"
repository = "https://github.com/dtolnay/prettyplease"
rust-version = "1.62"
[features]
verbatim = ["syn/parsing"]
[dependencies]
proc-macro2 = { version = "1.0.80", default-features = false }
syn = { version = "2.0.96", default-features = false, features = ["full"] }
[dev-dependencies]
indoc = "2"
proc-macro2 = { version = "1.0.80", default-features = false }
quote = { version = "1.0.35", default-features = false }
syn = { version = "2.0.96", default-features = false, features = ["clone-impls", "extra-traits", "parsing", "printing", "visit-mut"] }
[lib]
doc-scrape-examples = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]
[package.metadata.playground]
features = ["verbatim"]
[workspace]
members = ["cargo-expand/update", "examples/update"]