Skip to content

Commit

Permalink
update hashbrown and shred
Browse files Browse the repository at this point in the history
  • Loading branch information
xMAC94x committed Jun 7, 2021
1 parent 1a113a8 commit ecf92b9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "specs"
version = "0.16.1"
version = "0.16.2"
description = """
Specs is an Entity-Component-System library written in Rust.
"""
Expand All @@ -23,14 +23,14 @@ travis-ci = { repository = "slide-rs/specs" }

[dependencies]
crossbeam-queue = "0.3"
hashbrown = "0.9"
hashbrown = "0.11"
hibitset = { version = "0.6.3", default-features = false }
log = "0.4.8"
shred = { version = "0.11.0", default-features = false }
shred = { version = "0.12", default-features = false }
shrev = "1.1.1"
tuple_utils = "0.3.0"

rayon = { version = "1.5.0", optional = true }
rayon = { version = "1.5.1", optional = true }
serde = { version = "1.0.104", optional = true, features = ["serde_derive"] }
specs-derive = { version = "0.4.1", path = "specs-derive", optional = true }
uuid = { version = "0.8.1", optional = true, features = ["v4", "serde"] }
Expand All @@ -56,7 +56,7 @@ criterion = "0.3.1"
ron = "0.5.1"
rand = "0.8"
serde_json = "1.0.48"
shred = { version = "0.11.0", default-features = false, features = ["shred-derive"] }
shred = { version = "0.12.0", default-features = false, features = ["shred-derive"] }
specs-derive = { path = "specs-derive", version = "0.4.1" }

[[example]]
Expand Down
2 changes: 1 addition & 1 deletion tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ fn maintain_entity_deletion() {
let mut world = World::new();
struct DeleteSys {
pub entity: Option<Entity>,
};
}

impl<'a> System<'a> for DeleteSys {
type SystemData = Entities<'a>;
Expand Down

0 comments on commit ecf92b9

Please sign in to comment.