1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 05:10:03 -04:00

Update to puffin 0.19 (#3940)

…and some other smaller crate updates
This commit is contained in:
Emil Ernerfeldt
2024-02-01 20:15:11 +01:00
committed by GitHub
parent dda9f79838
commit 948db61a8a
5 changed files with 21 additions and 19 deletions

View File

@@ -90,7 +90,7 @@ impl Plugins {
callback,
} in callbacks
{
crate::profile_scope!(_name);
crate::profile_scope!("plugin", _name);
(callback)(ctx);
}
}

View File

@@ -53,8 +53,8 @@ log = { version = "0.4", features = ["std"] }
# Optional dependencies:
bytemuck = { version = "1.7.1", optional = true }
puffin = { version = "0.18", optional = true }
puffin_http = { version = "0.15", optional = true }
puffin = { workspace = true, optional = true }
puffin_http = { workspace = true, optional = true }
# Enable both WebGL & WebGPU when targeting the web (these features have no effect when not targeting wasm32)
wgpu = { workspace = true, features = ["webgpu", "webgl"], optional = true }