Skip to content

Commit 6b25e53

Browse files
committed
Add syn to workspace hack.
Cargo's syn now has the `full` feature, so add it here to keep it in sync.
1 parent aedb74b commit 6b25e53

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/tools/rustc-workspace-hack/Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,9 @@ rand = { version = "0.6.1", features = ["i128_support"] }
6969
serde = { version = "1.0.82", features = ['derive'] }
7070
serde_json = { version = "1.0.31", features = ["raw_value"] }
7171
smallvec = { version = "0.6", features = ['union', 'may_dangle'] }
72-
scopeguard = { version = "0.3.3", features = ["use_std", "default"]}
73-
byteorder = { version = "1.2.7", features = ["i128"]}
72+
scopeguard = { version = "0.3.3", features = ["use_std", "default"] }
73+
byteorder = { version = "1.2.7", features = ["i128"] }
74+
syn = { version = "0.15.35", features = ["extra-traits", "full"] }
7475

7576

7677
[target.'cfg(not(windows))'.dependencies]

0 commit comments

Comments
 (0)