diff options
| author | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2019-01-01 14:36:05 +0100 |
|---|---|---|
| committer | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2019-01-08 15:21:06 +0100 |
| commit | edaa1882bb621973d1d9b8972b3a32fc8eeb5a97 (patch) | |
| tree | 85dcff8cb05532613464fb6099c4af72c9b1d22d /src/tools/rustc-workspace-hack | |
| parent | f8033a29236978942d1f83fa260de43bb05ab47a (diff) | |
| download | rust-edaa1882bb621973d1d9b8972b3a32fc8eeb5a97.tar.gz rust-edaa1882bb621973d1d9b8972b3a32fc8eeb5a97.zip | |
Adjust cargo workspace hack to miri/cargo interactions
Diffstat (limited to 'src/tools/rustc-workspace-hack')
| -rw-r--r-- | src/tools/rustc-workspace-hack/Cargo.toml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tools/rustc-workspace-hack/Cargo.toml b/src/tools/rustc-workspace-hack/Cargo.toml index ca440167f9f..d28ef4a9ee9 100644 --- a/src/tools/rustc-workspace-hack/Cargo.toml +++ b/src/tools/rustc-workspace-hack/Cargo.toml @@ -50,12 +50,15 @@ features = [ ] [dependencies] -curl-sys = { version = "0.4.13", optional = true } +curl-sys = { version = "0.4.13", features = ["http2", "libnghttp2-sys"], optional = true } parking_lot = { version = "0.6", features = ['nightly'] } rand = { version = "0.5.5", 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'] } +scopeguard = { version = "0.3.3", features = ["use_std", "default"]} +byteorder = { version = "1.2.7", features = ["i128"]} + [target.'cfg(not(windows))'.dependencies] openssl = { version = "0.10.12", optional = true } |
