mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 12:43:34 +00:00
Bump hashbrown to 0.14 (#8904)
# Objective - Keep hashbrown dependency up to date ## Solution - Bump hashbrown to version `0.14` This supersedes #8823
This commit is contained in:
parent
910f984709
commit
f4fec7b83d
2 changed files with 2 additions and 2 deletions
|
@ -216,7 +216,7 @@ pub fn filesystem_watcher_system(
|
|||
// Unless we wait until we are sure the shader is finished being modified (and that there will be no more events coming),
|
||||
// we will sometimes get a crash when trying to reload a partially-modified shader.
|
||||
for (to_reload, _) in
|
||||
changed.drain_filter(|_, last_modified| last_modified.elapsed() >= watcher.delay)
|
||||
changed.extract_if(|_, last_modified| last_modified.elapsed() >= watcher.delay)
|
||||
{
|
||||
let _ = asset_server.load_untracked(to_reload.as_path().into(), true);
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@ ahash = "0.8.3"
|
|||
tracing = { version = "0.1", default-features = false, features = ["std"] }
|
||||
instant = { version = "0.1", features = ["wasm-bindgen"] }
|
||||
uuid = { version = "1.1", features = ["v4", "serde"] }
|
||||
hashbrown = { version = "0.13", features = ["serde"] }
|
||||
hashbrown = { version = "0.14", features = ["serde"] }
|
||||
bevy_utils_proc_macros = {version = "0.11.0-dev", path = "macros"}
|
||||
petgraph = "0.6"
|
||||
thiserror = "1.0"
|
||||
|
|
Loading…
Reference in a new issue