diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-03-13 03:33:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-13 03:33:37 +0100 |
| commit | 2049d6f4d4062172893e8585affe82797635efc5 (patch) | |
| tree | 5b95c4207271223d4bc56a3b08eb2932ee7b4781 | |
| parent | ad7b6508156b7455fc2d996062c7ab63cc4119e7 (diff) | |
| parent | 939a2639742f161811b500bc45bd06a1d63e9d18 (diff) | |
Rollup merge of #58908 - JohnTitor:improve-rand, r=scottmcm
Update rand version cc: #57724 r? @scottmcm
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | src/librustc_incremental/Cargo.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index a823bf8afcf..39ecc880097 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2747,7 +2747,7 @@ version = "0.0.0" dependencies = [ "graphviz 0.0.0", "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", "rustc 0.0.0", "rustc_data_structures 0.0.0", "rustc_fs_util 0.0.0", diff --git a/src/librustc_incremental/Cargo.toml b/src/librustc_incremental/Cargo.toml index 10b448b7fec..df971ec5bdb 100644 --- a/src/librustc_incremental/Cargo.toml +++ b/src/librustc_incremental/Cargo.toml @@ -12,7 +12,7 @@ crate-type = ["dylib"] [dependencies] graphviz = { path = "../libgraphviz" } log = "0.4" -rand = "0.5" +rand = "0.6" rustc = { path = "../librustc" } rustc_data_structures = { path = "../librustc_data_structures" } serialize = { path = "../libserialize" } |
