crate missing dependency when compiled on its own with std (#9487)

* Everything else in frame compiles in std.

This doesn't on its own as it needs Debug and that's
in the extra-traits syn feature.

* Incorporating feedback
This commit is contained in:
Squirrel
2021-08-03 19:57:03 +01:00
committed by GitHub
parent 98b2455326
commit 6bd726bc6b
@@ -15,5 +15,5 @@ targets = ["x86_64-unknown-linux-gnu"]
frame-support-procedural-tools-derive = { version = "3.0.0", path = "./derive" }
proc-macro2 = "1.0.28"
quote = "1.0.3"
syn = { version = "1.0.58", features = ["full", "visit"] }
syn = { version = "1.0.58", features = ["full", "visit", "extra-traits"] }
proc-macro-crate = "1.0.0"