Skip to content

Commit edaa188

Browse files
committed
Adjust cargo workspace hack to miri/cargo interactions
1 parent f8033a2 commit edaa188

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Cargo.lock

+2
Original file line numberDiff line numberDiff line change
@@ -2260,8 +2260,10 @@ dependencies = [
22602260
name = "rustc-workspace-hack"
22612261
version = "1.0.0"
22622262
dependencies = [
2263+
"byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
22632264
"parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
22642265
"rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
2266+
"scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
22652267
"serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
22662268
"serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
22672269
"smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)",

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,15 @@ features = [
5050
]
5151

5252
[dependencies]
53-
curl-sys = { version = "0.4.13", optional = true }
53+
curl-sys = { version = "0.4.13", features = ["http2", "libnghttp2-sys"], optional = true }
5454
parking_lot = { version = "0.6", features = ['nightly'] }
5555
rand = { version = "0.5.5", features = ["i128_support"] }
5656
serde = { version = "1.0.82", features = ['derive'] }
5757
serde_json = { version = "1.0.31", features = ["raw_value"] }
5858
smallvec = { version = "0.6", features = ['union'] }
59+
scopeguard = { version = "0.3.3", features = ["use_std", "default"]}
60+
byteorder = { version = "1.2.7", features = ["i128"]}
61+
5962

6063
[target.'cfg(not(windows))'.dependencies]
6164
openssl = { version = "0.10.12", optional = true }

0 commit comments

Comments
 (0)