Skip to content

Commit

Permalink
Use correct minimum version of profiling crate (#5494)
Browse files Browse the repository at this point in the history
We need profiling::function_scope which was introduced in 1.0.16, so
this is the minimum required version
* Closes <#5491>
* [x] I have followed the instructions in the PR template
  • Loading branch information
lucasmerlin authored Dec 17, 2024
1 parent cfc341f commit 8c4d8b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 8c4d8b2

Please sign in to comment.