diff options
| author | bors <bors@rust-lang.org> | 2015-02-04 08:47:27 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-02-04 08:47:27 +0000 |
| commit | c3e1f77291803d26b2897c0953dce5cf7e70ab65 (patch) | |
| tree | 83eb70740cacdf3d395976e85fed0b19c35dcc6e /src/libstd/lib.rs | |
| parent | d6c15d9b2daecdbe32eca894bda40c424798f5a0 (diff) | |
| parent | df1ac7aa63ea89a067c57663eab035f7b83f6933 (diff) | |
| download | rust-c3e1f77291803d26b2897c0953dce5cf7e70ab65.tar.gz rust-c3e1f77291803d26b2897c0953dce5cf7e70ab65.zip | |
Auto merge of #21892 - huonw:deprecate-rand, r=alexcrichton
Use [`rand`](https://crates.io/crates/rand) and [`derive_rand`](https://crates.io/crates/derive_rand) from crates.io. [breaking-change]
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index a46cea7a443..14e779f9c4a 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -140,7 +140,7 @@ extern crate core; #[macro_reexport(vec)] extern crate "collections" as core_collections; -extern crate "rand" as core_rand; +#[allow(deprecated)] extern crate "rand" as core_rand; extern crate alloc; extern crate unicode; extern crate libc; |
