Skip to content

Commit

Permalink
Update shred to 0.16.0 and hide optional uuid dep from features since…
Browse files Browse the repository at this point in the history
… it is enabled indirectly via uuid_entity feature
  • Loading branch information
Imberflur committed Jan 12, 2024
1 parent 01adaf6 commit c1a49bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ahash = "0.7.6"
crossbeam-queue = "0.3"
hibitset = { version = "0.6.4", default-features = false }
log = "0.4.8"
shred = { version = "0.15.0", default-features = false }
shred = { version = "0.16.0", default-features = false }
shrev = "1.1.1"
tuple_utils = "0.4.0"
nougat = "0.2.3"
Expand All @@ -37,8 +37,8 @@ uuid = { version = "1.0", optional = true, features = ["v4", "serde"] }
[features]
default = ["parallel"]
parallel = ["dep:rayon", "shred/parallel", "hibitset/parallel"]
uuid_entity = ["uuid", "serde"]
stdweb = ["uuid/js"]
uuid_entity = ["dep:uuid", "serde"]
stdweb = ["dep:uuid", "uuid?/js"]
storage-event-control = []
derive = ["shred-derive", "specs-derive"]
nightly = ["shred/nightly"]
Expand All @@ -54,7 +54,7 @@ criterion = "0.3.1"
ron = "0.7.1"
rand = "0.8"
serde_json = "1.0.48"
shred = { version = "0.15.0", default-features = false, features = ["shred-derive"] }
shred = { version = "0.16.0", default-features = false, features = ["shred-derive"] }
specs-derive = { path = "specs-derive", version = "0.4.1" }

[[example]]
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ pub mod world;
pub use hibitset::BitSet;
pub use shred::{
Accessor, AccessorCow, BatchAccessor, BatchController, BatchUncheckedWorld, Dispatcher,
DispatcherBuilder, Read, ReadExpect, RunNow, RunningTime, StaticAccessor, System, SystemData,
World, Write, WriteExpect,
DispatcherBuilder, Read, ReadExpect, RunNow, RunningTime, SendDispatcher, StaticAccessor,
System, SystemData, World, Write, WriteExpect,
};
pub use shrev::ReaderId;

Expand Down

0 comments on commit c1a49bb

Please sign in to comment.