Skip to content

Commit d3894da

Browse files
committed
Adjust cargo workspace hack to miri/cargo interactions
1 parent 1345da2 commit d3894da

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
@@ -2257,8 +2257,10 @@ dependencies = [
22572257
name = "rustc-workspace-hack"
22582258
version = "1.0.0"
22592259
dependencies = [
2260+
"byteorder 1.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
22602261
"parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
22612262
"rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
2263+
"scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
22622264
"serde 1.0.82 (registry+https://github.com/rust-lang/crates.io-index)",
22632265
"serde_json 1.0.33 (registry+https://github.com/rust-lang/crates.io-index)",
22642266
"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)