Skip to content

Commit c1a49bb

Browse files
committed
Update shred to 0.16.0 and hide optional uuid dep from features since it is enabled indirectly via uuid_entity feature
1 parent 01adaf6 commit c1a49bb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ahash = "0.7.6"
2424
crossbeam-queue = "0.3"
2525
hibitset = { version = "0.6.4", default-features = false }
2626
log = "0.4.8"
27-
shred = { version = "0.15.0", default-features = false }
27+
shred = { version = "0.16.0", default-features = false }
2828
shrev = "1.1.1"
2929
tuple_utils = "0.4.0"
3030
nougat = "0.2.3"
@@ -37,8 +37,8 @@ uuid = { version = "1.0", optional = true, features = ["v4", "serde"] }
3737
[features]
3838
default = ["parallel"]
3939
parallel = ["dep:rayon", "shred/parallel", "hibitset/parallel"]
40-
uuid_entity = ["uuid", "serde"]
41-
stdweb = ["uuid/js"]
40+
uuid_entity = ["dep:uuid", "serde"]
41+
stdweb = ["dep:uuid", "uuid?/js"]
4242
storage-event-control = []
4343
derive = ["shred-derive", "specs-derive"]
4444
nightly = ["shred/nightly"]
@@ -54,7 +54,7 @@ criterion = "0.3.1"
5454
ron = "0.7.1"
5555
rand = "0.8"
5656
serde_json = "1.0.48"
57-
shred = { version = "0.15.0", default-features = false, features = ["shred-derive"] }
57+
shred = { version = "0.16.0", default-features = false, features = ["shred-derive"] }
5858
specs-derive = { path = "specs-derive", version = "0.4.1" }
5959

6060
[[example]]

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ pub mod world;
209209
pub use hibitset::BitSet;
210210
pub use shred::{
211211
Accessor, AccessorCow, BatchAccessor, BatchController, BatchUncheckedWorld, Dispatcher,
212-
DispatcherBuilder, Read, ReadExpect, RunNow, RunningTime, StaticAccessor, System, SystemData,
213-
World, Write, WriteExpect,
212+
DispatcherBuilder, Read, ReadExpect, RunNow, RunningTime, SendDispatcher, StaticAccessor,
213+
System, SystemData, World, Write, WriteExpect,
214214
};
215215
pub use shrev::ReaderId;
216216

0 commit comments

Comments
 (0)