Skip to content

Commit

Permalink
Add syn to workspace hack.
Browse files Browse the repository at this point in the history
Cargo's syn now has the `full` feature, so add it here to keep it in sync.
  • Loading branch information
ehuss committed Jun 17, 2019
1 parent aedb74b commit 6b25e53
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/tools/rustc-workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@ rand = { version = "0.6.1", features = ["i128_support"] }
serde = { version = "1.0.82", features = ['derive'] }
serde_json = { version = "1.0.31", features = ["raw_value"] }
smallvec = { version = "0.6", features = ['union', 'may_dangle'] }
scopeguard = { version = "0.3.3", features = ["use_std", "default"]}
byteorder = { version = "1.2.7", features = ["i128"]}
scopeguard = { version = "0.3.3", features = ["use_std", "default"] }
byteorder = { version = "1.2.7", features = ["i128"] }
syn = { version = "0.15.35", features = ["extra-traits", "full"] }


[target.'cfg(not(windows))'.dependencies]
Expand Down

0 comments on commit 6b25e53

Please sign in to comment.