• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "syn-dev"
3version = "0.0.0"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5edition = "2018"
6publish = false
7
8[lib]
9path = "parse.rs"
10proc-macro = true
11
12[[bin]]
13path = "main.rs"
14name = "syn-dev"
15
16[dependencies]
17quote = "1.0"
18
19[dependencies.syn]
20path = ".."
21default-features = false
22features = ["parsing", "full", "extra-traits", "proc-macro"]
23