diff options
| author | Rémy Rakic <remy.rakic+github@gmail.com> | 2022-01-14 13:05:27 +0100 |
|---|---|---|
| committer | Rémy Rakic <remy.rakic+github@gmail.com> | 2022-01-14 13:05:27 +0100 |
| commit | 3713562c6a930e35593abc0239d8ceee87333e3b (patch) | |
| tree | bc630f9e428139de1f88b7f3d18b3ca46d37197d | |
| parent | 5928056af232e851fdaab03736c1225094682ab5 (diff) | |
| download | rust-3713562c6a930e35593abc0239d8ceee87333e3b.tar.gz rust-3713562c6a930e35593abc0239d8ceee87333e3b.zip | |
Update rand to deduplicate it
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | compiler/rustc_incremental/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index 2f763284069..287bd1ab303 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4052,7 +4052,7 @@ dependencies = [ name = "rustc_incremental" version = "0.0.0" dependencies = [ - "rand 0.7.3", + "rand 0.8.4", "rustc_ast", "rustc_data_structures", "rustc_errors", diff --git a/compiler/rustc_incremental/Cargo.toml b/compiler/rustc_incremental/Cargo.toml index dece752c194..d3c425a072b 100644 --- a/compiler/rustc_incremental/Cargo.toml +++ b/compiler/rustc_incremental/Cargo.toml @@ -9,7 +9,7 @@ doctest = false [dependencies] rustc_graphviz = { path = "../rustc_graphviz" } tracing = "0.1" -rand = "0.7" +rand = "0.8.4" rustc_middle = { path = "../rustc_middle" } rustc_data_structures = { path = "../rustc_data_structures" } rustc_hir = { path = "../rustc_hir" } |
