Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .mailmap with my name #61585

Merged
merged 1 commit into from
Jun 6, 2019
Merged

Update .mailmap with my name #61585

merged 1 commit into from
Jun 6, 2019

Conversation

lnicola
Copy link
Member

@lnicola lnicola commented Jun 6, 2019

No description provided.

@rust-highfive
Copy link
Collaborator

r? @nikomatsakis

(rust_highfive has picked a reviewer for you, use r? to override)

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Jun 6, 2019
@Mark-Simulacrum
Copy link
Member

@bors r+ rollup=always

r? @Mark-Simulacrum

@bors
Copy link
Contributor

bors commented Jun 6, 2019

📌 Commit 2bcdee3 has been approved by Mark-Simulacrum

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jun 6, 2019
Centril added a commit to Centril/rust that referenced this pull request Jun 6, 2019
@bors
Copy link
Contributor

bors commented Jun 6, 2019

⌛ Testing commit 2bcdee3 with merge 36040841a0fb9ceccadbcd9ca19e2833380d1df4...

@pietroalbini
Copy link
Member

@bors treeclosed=1000

rand is broken and we can't land any PR.

@bors
Copy link
Contributor

bors commented Jun 6, 2019

💔 Test failed - checks-travis

@rust-highfive
Copy link
Collaborator

The job x86_64-gnu-distcheck of your PR failed on Travis (raw log). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem.

Click to expand the log.
[00:03:55]    Compiling aho-corasick v0.7.3
[00:03:56]    Compiling bstr v0.1.4
[00:03:57]    Compiling clap v2.33.0
[00:03:58]    Compiling tar v0.4.26
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Rng: rand_core::SeedableRng` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/std.rs:55:6
[00:04:00]    |
[00:04:00] 55 | impl SeedableRng for StdRng {
[00:04:00]    |      ^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Rng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_isaac::IsaacRng: rand_core::SeedableRng` is not satisfied
[00:04:00]    |
[00:04:00]    |
[00:04:00] 50 | impl SeedableRng for IsaacRng {
[00:04:00]    |      ^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_isaac::IsaacRng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_isaac::Isaac64Rng: rand_core::SeedableRng` is not satisfied
[00:04:00]    |
[00:04:00]    |
[00:04:00] 96 | impl SeedableRng for Isaac64Rng {
[00:04:00]    |      ^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_isaac::Isaac64Rng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Rng: rand_core::SeedableRng` is not satisfied
[00:04:00]     |
[00:04:00]     |
[00:04:00] 198 | impl SeedableRng for Hc128Rng {
[00:04:00]     |      ^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Rng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_xorshift::XorShiftRng: rand_core::SeedableRng` is not satisfied
[00:04:00]     |
[00:04:00]     |
[00:04:00] 239 | impl SeedableRng for XorShiftRng {
[00:04:00]     |      ^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_xorshift::XorShiftRng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Rng: rand_core::SeedableRng` is not satisfied
[00:04:00]     |
[00:04:00]     |
[00:04:00] 279 | impl SeedableRng for StdRng {
[00:04:00]     |      ^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Rng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Core: rand_core::block::BlockRngCore` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/thread.rs:73:5
[00:04:00]    |
[00:04:00] 73 |     rng: *mut ReseedingRng<Hc128Core, EntropyRng>,
[00:04:00]    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `rand_core::block::BlockRngCore` is not implemented for `rand_hc::Hc128Core`
[00:04:00]    |
[00:04:00] note: required by `rngs::adapter::reseeding::ReseedingRng`
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:88:1
[00:04:00]    |
[00:04:00] 88 | / pub struct ReseedingRng<R, Rsdr>(BlockRng<ReseedingCore<R, Rsdr>>)
[00:04:00] 89 | | where R: BlockRngCore + SeedableRng,
[00:04:00] 90 | |       Rsdr: RngCore;
[00:04:00] 
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Core: rand_core::SeedableRng` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/thread.rs:73:5
[00:04:00]    |
[00:04:00] 73 |     rng: *mut ReseedingRng<Hc128Core, EntropyRng>,
[00:04:00]    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Core`
[00:04:00]    |
[00:04:00] note: required by `rngs::adapter::reseeding::ReseedingRng`
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:88:1
[00:04:00]    |
[00:04:00] 88 | / pub struct ReseedingRng<R, Rsdr>(BlockRng<ReseedingCore<R, Rsdr>>)
[00:04:00] 89 | | where R: BlockRngCore + SeedableRng,
[00:04:00] 90 | |       Rsdr: RngCore;
[00:04:00] 
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Core: rand_core::block::BlockRngCore` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/thread.rs:76:1
[00:04:00] 76 | / thread_local!(
[00:04:00] 76 | / thread_local!(
[00:04:00] 77 | |     static THREAD_RNG_KEY: UnsafeCell<ReseedingRng<Hc128Core, EntropyRng>> = {
[00:04:00] 78 | |         let mut entropy_source = EntropyRng::new();
[00:04:00] 79 | |         let r = Hc128Core::from_rng(&mut entropy_source).unwrap_or_else(|err|
[00:04:00] 85 | |     }
[00:04:00] 86 | | );
[00:04:00] 86 | | );
[00:04:00]    | |__^ the trait `rand_core::block::BlockRngCore` is not implemented for `rand_hc::Hc128Core`
[00:04:00]    |
[00:04:00] note: required by `rngs::adapter::reseeding::ReseedingRng`
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:88:1
[00:04:00]    |
[00:04:00] 88 | / pub struct ReseedingRng<R, Rsdr>(BlockRng<ReseedingCore<R, Rsdr>>)
[00:04:00] 89 | | where R: BlockRngCore + SeedableRng,
[00:04:00] 90 | |       Rsdr: RngCore;
[00:04:00]    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
[00:04:00] 
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Core: rand_core::SeedableRng` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/thread.rs:76:1
[00:04:00] 76 | / thread_local!(
[00:04:00] 76 | / thread_local!(
[00:04:00] 77 | |     static THREAD_RNG_KEY: UnsafeCell<ReseedingRng<Hc128Core, EntropyRng>> = {
[00:04:00] 78 | |         let mut entropy_source = EntropyRng::new();
[00:04:00] 79 | |         let r = Hc128Core::from_rng(&mut entropy_source).unwrap_or_else(|err|
[00:04:00] 85 | |     }
[00:04:00] 86 | | );
[00:04:00] 86 | | );
[00:04:00]    | |__^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Core`
[00:04:00]    |
[00:04:00] note: required by `rngs::adapter::reseeding::ReseedingRng`
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:88:1
[00:04:00]    |
[00:04:00] 88 | / pub struct ReseedingRng<R, Rsdr>(BlockRng<ReseedingCore<R, Rsdr>>)
[00:04:00] 89 | | where R: BlockRngCore + SeedableRng,
[00:04:00] 90 | |       Rsdr: RngCore;
[00:04:00]    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
[00:04:00] 
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Core: rand_core::block::BlockRngCore` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/thread.rs:76:1
[00:04:00] 76 | / thread_local!(
[00:04:00] 76 | / thread_local!(
[00:04:00] 77 | |     static THREAD_RNG_KEY: UnsafeCell<ReseedingRng<Hc128Core, EntropyRng>> = {
[00:04:00] 78 | |         let mut entropy_source = EntropyRng::new();
[00:04:00] 79 | |         let r = Hc128Core::from_rng(&mut entropy_source).unwrap_or_else(|err|
[00:04:00] 85 | |     }
[00:04:00] 86 | | );
[00:04:00] 86 | | );
[00:04:00]    | |__^ the trait `rand_core::block::BlockRngCore` is not implemented for `rand_hc::Hc128Core`
[00:04:00]    |
[00:04:00] note: required by `rngs::adapter::reseeding::ReseedingRng`
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:88:1
[00:04:00]    |
[00:04:00] 88 | / pub struct ReseedingRng<R, Rsdr>(BlockRng<ReseedingCore<R, Rsdr>>)
[00:04:00] 89 | | where R: BlockRngCore + SeedableRng,
[00:04:00] 90 | |       Rsdr: RngCore;
[00:04:00]    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
[00:04:00] 
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Core: rand_core::SeedableRng` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/thread.rs:76:1
[00:04:00] 76 | / thread_local!(
[00:04:00] 76 | / thread_local!(
[00:04:00] 77 | |     static THREAD_RNG_KEY: UnsafeCell<ReseedingRng<Hc128Core, EntropyRng>> = {
[00:04:00] 78 | |         let mut entropy_source = EntropyRng::new();
[00:04:00] 79 | |         let r = Hc128Core::from_rng(&mut entropy_source).unwrap_or_else(|err|
[00:04:00] 85 | |     }
[00:04:00] 86 | | );
[00:04:00] 86 | | );
[00:04:00]    | |__^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Core`
[00:04:00]    |
[00:04:00] note: required by `rngs::adapter::reseeding::ReseedingRng`
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:88:1
[00:04:00]    |
[00:04:00] 88 | / pub struct ReseedingRng<R, Rsdr>(BlockRng<ReseedingCore<R, Rsdr>>)
[00:04:00] 89 | | where R: BlockRngCore + SeedableRng,
[00:04:00] 90 | |       Rsdr: RngCore;
[00:04:00]    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
[00:04:00] 
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Core: rand_core::block::BlockRngCore` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/thread.rs:76:1
[00:04:00] 76 | / thread_local!(
[00:04:00] 76 | / thread_local!(
[00:04:00] 77 | |     static THREAD_RNG_KEY: UnsafeCell<ReseedingRng<Hc128Core, EntropyRng>> = {
[00:04:00] 78 | |         let mut entropy_source = EntropyRng::new();
[00:04:00] 79 | |         let r = Hc128Core::from_rng(&mut entropy_source).unwrap_or_else(|err|
[00:04:00] 85 | |     }
[00:04:00] 86 | | );
[00:04:00] 86 | | );
[00:04:00]    | |__^ the trait `rand_core::block::BlockRngCore` is not implemented for `rand_hc::Hc128Core`
[00:04:00]    |
[00:04:00] note: required by `rngs::adapter::reseeding::ReseedingRng`
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:88:1
[00:04:00]    |
[00:04:00] 88 | / pub struct ReseedingRng<R, Rsdr>(BlockRng<ReseedingCore<R, Rsdr>>)
[00:04:00] 89 | | where R: BlockRngCore + SeedableRng,
[00:04:00] 90 | |       Rsdr: RngCore;
[00:04:00]    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
[00:04:00] 
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Core: rand_core::SeedableRng` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/thread.rs:76:1
[00:04:00] 76 | / thread_local!(
[00:04:00] 76 | / thread_local!(
[00:04:00] 77 | |     static THREAD_RNG_KEY: UnsafeCell<ReseedingRng<Hc128Core, EntropyRng>> = {
[00:04:00] 78 | |         let mut entropy_source = EntropyRng::new();
[00:04:00] 79 | |         let r = Hc128Core::from_rng(&mut entropy_source).unwrap_or_else(|err|
[00:04:00] 85 | |     }
[00:04:00] 86 | | );
[00:04:00] 86 | | );
[00:04:00]    | |__^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Core`
[00:04:00]    |
[00:04:00] note: required by `rngs::adapter::reseeding::ReseedingRng`
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:88:1
[00:04:00]    |
[00:04:00] 88 | / pub struct ReseedingRng<R, Rsdr>(BlockRng<ReseedingCore<R, Rsdr>>)
[00:04:00] 89 | | where R: BlockRngCore + SeedableRng,
[00:04:00] 90 | |       Rsdr: RngCore;
[00:04:00]    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
[00:04:00] 
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Core: rand_core::block::BlockRngCore` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/thread.rs:76:1
[00:04:00] 76 | / thread_local!(
[00:04:00] 76 | / thread_local!(
[00:04:00] 77 | |     static THREAD_RNG_KEY: UnsafeCell<ReseedingRng<Hc128Core, EntropyRng>> = {
[00:04:00] 78 | |         let mut entropy_source = EntropyRng::new();
[00:04:00] 79 | |         let r = Hc128Core::from_rng(&mut entropy_source).unwrap_or_else(|err|
[00:04:00] 85 | |     }
[00:04:00] 86 | | );
[00:04:00] 86 | | );
[00:04:00]    | |__^ the trait `rand_core::block::BlockRngCore` is not implemented for `rand_hc::Hc128Core`
[00:04:00]    |
[00:04:00] note: required by `rngs::adapter::reseeding::ReseedingRng`
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:88:1
[00:04:00]    |
[00:04:00] 88 | / pub struct ReseedingRng<R, Rsdr>(BlockRng<ReseedingCore<R, Rsdr>>)
[00:04:00] 89 | | where R: BlockRngCore + SeedableRng,
[00:04:00] 90 | |       Rsdr: RngCore;
[00:04:00]    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
[00:04:00] 
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Core: rand_core::SeedableRng` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/thread.rs:76:1
[00:04:00] 76 | / thread_local!(
[00:04:00] 76 | / thread_local!(
[00:04:00] 77 | |     static THREAD_RNG_KEY: UnsafeCell<ReseedingRng<Hc128Core, EntropyRng>> = {
[00:04:00] 78 | |         let mut entropy_source = EntropyRng::new();
[00:04:00] 79 | |         let r = Hc128Core::from_rng(&mut entropy_source).unwrap_or_else(|err|
[00:04:00] 85 | |     }
[00:04:00] 86 | | );
[00:04:00] 86 | | );
[00:04:00]    | |__^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Core`
[00:04:00]    |
[00:04:00] note: required by `rngs::adapter::reseeding::ReseedingRng`
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:88:1
[00:04:00]    |
[00:04:00] 88 | / pub struct ReseedingRng<R, Rsdr>(BlockRng<ReseedingCore<R, Rsdr>>)
[00:04:00] 89 | | where R: BlockRngCore + SeedableRng,
[00:04:00] 90 | |       Rsdr: RngCore;
[00:04:00]    = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
[00:04:00] 
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Rng: rand_core::SeedableRng` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/std.rs:56:5
[00:04:00]    |
[00:04:00] 56 |     type Seed = <Hc128Rng as SeedableRng>::Seed;
[00:04:00]    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Rng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Rng: rand_core::SeedableRng` is not satisfied
[00:04:00]   --> /cargo/registry/src/gh.neting.cc-1ecc6299db9ec823/rand-0.6.5/src/rngs/std.rs:58:5
[00:04:00]    |
[00:04:00] 58 | /     fn from_seed(seed: Self::Seed) -> Self {
[00:04:00] 59 | |         StdRng(Hc128Rng::from_seed(seed))
[00:04:00] 60 | |     }
[00:04:00]    | |_____^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Rng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_isaac::IsaacRng: rand_core::SeedableRng` is not satisfied
[00:04:00]    |
[00:04:00]    |
[00:04:00] 51 |     type Seed = <rand_isaac::IsaacRng as SeedableRng>::Seed;
[00:04:00]    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_isaac::IsaacRng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_isaac::IsaacRng: rand_core::SeedableRng` is not satisfied
[00:04:00]    |
[00:04:00]    |
[00:04:00] 53 | /     fn from_seed(seed: Self::Seed) -> Self {
[00:04:00] 54 | |         IsaacRng(rand_isaac::IsaacRng::from_seed(seed))
[00:04:00] 55 | |     }
[00:04:00]    | |_____^ the trait `rand_core::SeedableRng` is not implemented for `rand_isaac::IsaacRng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_isaac::Isaac64Rng: rand_core::SeedableRng` is not satisfied
[00:04:00]    |
[00:04:00]    |
[00:04:00] 97 |     type Seed = <rand_isaac::Isaac64Rng as SeedableRng>::Seed;
[00:04:00]    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_isaac::Isaac64Rng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_isaac::Isaac64Rng: rand_core::SeedableRng` is not satisfied
[00:04:00]     |
[00:04:00]     |
[00:04:00] 99  | /     fn from_seed(seed: Self::Seed) -> Self {
[00:04:00] 100 | |         Isaac64Rng(rand_isaac::Isaac64Rng::from_seed(seed))
[00:04:00] 101 | |     }
[00:04:00]     | |_____^ the trait `rand_core::SeedableRng` is not implemented for `rand_isaac::Isaac64Rng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Rng: rand_core::SeedableRng` is not satisfied
[00:04:00]     |
[00:04:00]     |
[00:04:00] 199 |     type Seed = <rand_hc::Hc128Rng as SeedableRng>::Seed;
[00:04:00]     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Rng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Rng: rand_core::SeedableRng` is not satisfied
[00:04:00]     |
[00:04:00]     |
[00:04:00] 201 | /     fn from_seed(seed: Self::Seed) -> Self {
[00:04:00] 202 | |         Hc128Rng(rand_hc::Hc128Rng::from_seed(seed))
[00:04:00] 203 | |     }
[00:04:00]     | |_____^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Rng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_xorshift::XorShiftRng: rand_core::SeedableRng` is not satisfied
[00:04:00]     |
[00:04:00]     |
[00:04:00] 240 |     type Seed = <::rand_xorshift::XorShiftRng as SeedableRng>::Seed;
[00:04:00]     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_xorshift::XorShiftRng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_xorshift::XorShiftRng: rand_core::SeedableRng` is not satisfied
[00:04:00]     |
[00:04:00]     |
[00:04:00] 242 | /     fn from_seed(seed: Self::Seed) -> Self {
[00:04:00] 243 | |         XorShiftRng(::rand_xorshift::XorShiftRng::from_seed(seed))
[00:04:00] 244 | |     }
[00:04:00]     | |_____^ the trait `rand_core::SeedableRng` is not implemented for `rand_xorshift::XorShiftRng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Rng: rand_core::SeedableRng` is not satisfied
[00:04:00]     |
[00:04:00]     |
[00:04:00] 280 |     type Seed = <rngs::StdRng as SeedableRng>::Seed;
[00:04:00]     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Rng`
[00:04:00] 
[00:04:00] error[E0277]: the trait bound `rand_hc::Hc128Rng: rand_core::SeedableRng` is not satisfied
[00:04:00]     |
[00:04:00]     |
[00:04:00] 282 | /     fn from_seed(seed: Self::Seed) -> Self {
[00:04:00] 283 | |         StdRng(rngs::StdRng::from_seed(seed))
[00:04:00] 284 | |     }
[00:04:00]     | |_____^ the trait `rand_core::SeedableRng` is not implemented for `rand_hc::Hc128Rng`
[00:04:00] error: aborting due to 28 previous errors
[00:04:00] 
[00:04:00] For more information about this error, try `rustc --explain E0277`.
[00:04:00] error: Could not compile `rand`.
[00:04:00] error: Could not compile `rand`.
[00:04:00] warning: build failed, waiting for other jobs to finish...
[00:04:08] error: failed to compile `cargo-vendor v0.1.22`, intermediate artifacts can be found at `/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-bootstrap-tools`
[00:04:08] Caused by:
[00:04:08]   build failed
[00:04:08] 
[00:04:08] 
[00:04:08] 
[00:04:08] command did not execute successfully: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "install" "-j" "4" "--locked" "--color" "always" "--force" "--debug" "--vers" "0.1.22" "cargo-vendor"
[00:04:08] 
[00:04:08] 
[00:04:08] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test distcheck
[00:04:08] Build completed unsuccessfully in 0:00:48
---
travis_time:end:316bb700:start=1559839810941938179,finish=1559839810948082044,duration=6143865
travis_fold:end:after_failure.3
travis_fold:start:after_failure.4
travis_time:start:04a930f0
$ ln -s . checkout && for CORE in obj/cores/core.*; do EXE=$(echo $CORE | sed 's|obj/cores/core\.[0-9]*\.!checkout!\(.*\)|\1|;y|!|/|'); if [ -f "$EXE" ]; then printf travis_fold":start:crashlog\n\033[31;1m%s\033[0m\n" "$CORE"; gdb --batch -q -c "$CORE" "$EXE" -iex 'set auto-load off' -iex 'dir src/' -iex 'set sysroot .' -ex bt -ex q; echo travis_fold":"end:crashlog; fi; done || true
travis_fold:end:after_failure.4
travis_fold:start:after_failure.5
travis_time:start:07d59c26
travis_time:start:07d59c26
$ cat ./obj/build/x86_64-unknown-linux-gnu/native/asan/build/lib/asan/clang_rt.asan-dynamic-i386.vers || true
cat: ./obj/build/x86_64-unknown-linux-gnu/native/asan/build/lib/asan/clang_rt.asan-dynamic-i386.vers: No such file or directory
travis_fold:end:after_failure.5
travis_fold:start:after_failure.6
travis_time:start:0342acc2
$ dmesg | grep -i kill

I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact @TimNN. (Feature Requests)

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Jun 6, 2019
@pietroalbini
Copy link
Member

The rand crate broke.
@bors retry

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jun 6, 2019
@pietroalbini
Copy link
Member

@bors treeclosed-

The rand crate should be fixed!

Centril added a commit to Centril/rust that referenced this pull request Jun 6, 2019
Centril added a commit to Centril/rust that referenced this pull request Jun 6, 2019
bors added a commit that referenced this pull request Jun 6, 2019
Rollup of 5 pull requests

Successful merges:

 - #61376 (Add Bound::cloned())
 - #61554 (Change visit api)
 - #61559 (Make visitors iterate)
 - #61585 (Update .mailmap with my name)
 - #61591 (Update .mailmap)

Failed merges:

r? @ghost
@bors bors merged commit 2bcdee3 into rust-lang:master Jun 6, 2019
@lnicola lnicola deleted the mailmap branch April 7, 2024 09:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants