Add syn to workspace hack.

Cargo's syn now has the `full` feature, so add it here to keep it in sync.
This commit is contained in:
Eric Huss
2019-06-13 22:35:27 -07:00
parent aedb74b8c3
commit 6b25e53538

View File

@@ -71,6 +71,7 @@ serde_json = { version = "1.0.31", features = ["raw_value"] }
smallvec = { version = "0.6", features = ['union', 'may_dangle'] } smallvec = { version = "0.6", features = ['union', 'may_dangle'] }
scopeguard = { version = "0.3.3", features = ["use_std", "default"] } scopeguard = { version = "0.3.3", features = ["use_std", "default"] }
byteorder = { version = "1.2.7", features = ["i128"] } byteorder = { version = "1.2.7", features = ["i128"] }
syn = { version = "0.15.35", features = ["extra-traits", "full"] }
[target.'cfg(not(windows))'.dependencies] [target.'cfg(not(windows))'.dependencies]