We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6906f08 commit 157b2d5Copy full SHA for 157b2d5
Cargo.lock
@@ -3098,6 +3098,7 @@ dependencies = [
3098
"bstr 0.2.17",
3099
"clap 3.2.20",
3100
"libz-sys",
3101
+ "rand 0.8.5",
3102
"regex",
3103
"serde_json",
3104
"syn",
src/tools/rustc-workspace-hack/Cargo.toml
@@ -82,6 +82,8 @@ regex = { version = "1.5.6" }
82
serde_json = { version = "1.0.31", features = ["raw_value", "unbounded_depth"] }
83
syn = { version = "1", features = ['full', 'visit'] }
84
url = { version = "2.0", features = ['serde'] }
85
+# Ensure default features of rand, which are disabled in some scenarios.
86
+rand = { version = "0.8.5" }
87
88
[target.'cfg(not(windows))'.dependencies]
89
openssl = { version = "0.10.35", optional = true }
0 commit comments