diff options
| author | Eric Huss <eric@huss.org> | 2019-06-13 22:35:27 -0700 |
|---|---|---|
| committer | Eric Huss <eric@huss.org> | 2019-06-17 14:34:43 -0700 |
| commit | 6b25e535381bffe43359060cbbda2ee3df912686 (patch) | |
| tree | 36aefd5d2873116fadc028635b11580a97407768 /src/tools/rustc-workspace-hack | |
| parent | aedb74b8c38f965c5a27408050b3b04c83e514bb (diff) | |
| download | rust-6b25e535381bffe43359060cbbda2ee3df912686.tar.gz rust-6b25e535381bffe43359060cbbda2ee3df912686.zip | |
Add `syn` to workspace hack.
Cargo's syn now has the `full` feature, so add it here to keep it in sync.
Diffstat (limited to 'src/tools/rustc-workspace-hack')
| -rw-r--r-- | src/tools/rustc-workspace-hack/Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/rustc-workspace-hack/Cargo.toml b/src/tools/rustc-workspace-hack/Cargo.toml index 74720061122..26b447d2efe 100644 --- a/src/tools/rustc-workspace-hack/Cargo.toml +++ b/src/tools/rustc-workspace-hack/Cargo.toml @@ -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] |
