Skip to content

Commit

Permalink
Change crossbeam to crossbeam-queue to reduce deps
Browse files Browse the repository at this point in the history
  • Loading branch information
torkleyy committed Jun 28, 2019
1 parent 1b6424c commit c34bdac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -22,7 +22,7 @@ autobenches = false
travis-ci = { repository = "slide-rs/specs" }

[dependencies]
crossbeam = "0.7.1"
crossbeam-queue = "0.1"
derivative = "1"
hashbrown = "0.5.0"
hibitset = { version = "0.6.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion src/world/lazy.rs
@@ -1,4 +1,4 @@
use crossbeam::queue::SegQueue;
use crossbeam_queue::SegQueue;
use derivative::Derivative;

use crate::{prelude::*, world::EntitiesRes};
Expand Down

0 comments on commit c34bdac

Please sign in to comment.