1[package] 2name = "dump-syntax" 3version = "0.0.0" 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5edition = "2021" 6publish = false 7 8[dependencies] 9colored = "2" 10proc-macro2 = { version = "1", features = ["span-locations"] } 11 12[dependencies.syn] 13default-features = false 14features = ["extra-traits", "full", "parsing"] 15path = "../.." 16