diff --git a/Cargo.lock b/Cargo.lock index 5ddea28d56a..796734ea1d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3602,6 +3602,7 @@ dependencies = [ "libz-sys", "proc-macro2", "quote", + "rand_core 0.5.1", "serde", "serde_json", "smallvec", diff --git a/src/tools/rustc-workspace-hack/Cargo.toml b/src/tools/rustc-workspace-hack/Cargo.toml index 96e5db45efc..d39cb597b21 100644 --- a/src/tools/rustc-workspace-hack/Cargo.toml +++ b/src/tools/rustc-workspace-hack/Cargo.toml @@ -69,6 +69,7 @@ libc = { version = "0.2.79", features = ["align"] } libz-sys = { version = "1.1.2" } proc-macro2 = { version = "1", features = ["default"] } quote = { version = "1", features = ["default"] } +rand_core_0_5 = { package = "rand_core", version = "0.5.1", features = ["getrandom", "alloc", "std"] } serde = { version = "1.0.82", features = ['derive'] } serde_json = { version = "1.0.31", features = ["raw_value", "unbounded_depth"] } smallvec = { version = "1.6.1", features = ['union', 'may_dangle'] }