1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Use correct minimum version of profiling crate (#5494)

We need profiling::function_scope which was introduced in 1.0.16, so
this is the minimum required version
* Closes <https://github.com/emilk/egui/issues/5491>
* [x] I have followed the instructions in the PR template
This commit is contained in:
lucasmerlin
2024-12-17 09:37:15 +01:00
committed by GitHub
parent cfc341fabd
commit 8c4d8b2da8

View File

@@ -87,7 +87,7 @@ log = { version = "0.4", features = ["std"] }
nohash-hasher = "0.2"
parking_lot = "0.12"
pollster = "0.4"
profiling = { version = "1.0", default-features = false }
profiling = { version = "1.0.16", default-features = false }
puffin = "0.19"
puffin_http = "0.16"
raw-window-handle = "0.6.0"