Skip to content

Commit

Permalink
Use fixed crossbeam version (0.4.1).
Browse files Browse the repository at this point in the history
  • Loading branch information
c0gent committed Jul 25, 2018
1 parent 5498c2f commit 2fe37f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ log = "*"
env_logger = "*"
clap = "*"
failure = "*"
crossbeam = "*"
crossbeam = "~0.4.1"
crossbeam-channel = "*"
chrono = "*"
rust-crypto = "*"
Expand Down
2 changes: 1 addition & 1 deletion src/hydrabadger/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
unreachable_code)]

use std::collections::BTreeMap;
use crossbeam::sync::SegQueue;
use crossbeam::queue::SegQueue;
use tokio::{
self,
prelude::*,
Expand Down
2 changes: 1 addition & 1 deletion src/hydrabadger/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use std::{
fmt,
collections::BTreeMap,
};
use crossbeam::sync::SegQueue;
use crossbeam::queue::SegQueue;
use hbbft::{
crypto::{PublicKey, SecretKey},
sync_key_gen::{SyncKeyGen, Part, PartOutcome, Ack},
Expand Down

0 comments on commit 2fe37f3

Please sign in to comment.