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 believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "syn"
16version = "1.0.73"
17authors = ["David Tolnay <dtolnay@gmail.com>"]
18include = ["/benches/**", "/build.rs", "/Cargo.toml", "/LICENSE-APACHE", "/LICENSE-MIT", "/README.md", "/src/**", "/tests/**"]
19description = "Parser for Rust source code"
20documentation = "https://docs.rs/syn"
21readme = "README.md"
22categories = ["development-tools::procedural-macro-helpers"]
23license = "MIT OR Apache-2.0"
24repository = "https://github.com/dtolnay/syn"
25[package.metadata.docs.rs]
26all-features = true
27rustdoc-args = ["--cfg", "doc_cfg"]
28targets = ["x86_64-unknown-linux-gnu"]
29
30[package.metadata.playground]
31features = ["full", "visit", "visit-mut", "fold", "extra-traits"]
32
33[[bench]]
34name = "rust"
35harness = false
36required-features = ["full", "parsing"]
37
38[[bench]]
39name = "file"
40required-features = ["full", "parsing"]
41[dependencies.proc-macro2]
42version = "1.0.26"
43default-features = false
44
45[dependencies.quote]
46version = "1.0"
47optional = true
48default-features = false
49
50[dependencies.unicode-xid]
51version = "0.2"
52[dev-dependencies.anyhow]
53version = "1.0"
54
55[dev-dependencies.flate2]
56version = "1.0"
57
58[dev-dependencies.insta]
59version = "1.0"
60
61[dev-dependencies.rayon]
62version = "1.0"
63
64[dev-dependencies.ref-cast]
65version = "1.0"
66
67[dev-dependencies.regex]
68version = "1.0"
69
70[dev-dependencies.reqwest]
71version = "0.10"
72features = ["blocking"]
73
74[dev-dependencies.syn-test-suite]
75version = "0"
76
77[dev-dependencies.tar]
78version = "0.4.16"
79
80[dev-dependencies.termcolor]
81version = "1.0"
82
83[dev-dependencies.walkdir]
84version = "2.1"
85
86[features]
87clone-impls = []
88default = ["derive", "parsing", "printing", "clone-impls", "proc-macro"]
89derive = []
90extra-traits = []
91fold = []
92full = []
93parsing = []
94printing = ["quote"]
95proc-macro = ["proc-macro2/proc-macro", "quote/proc-macro"]
96test = ["syn-test-suite/all-features"]
97visit = []
98visit-mut = []
99