From 8c4d8b2da8c108d0fe67f16dddc686ac6bf58eae Mon Sep 17 00:00:00 2001 From: lucasmerlin Date: Tue, 17 Dec 2024 09:37:15 +0100 Subject: [PATCH] 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 * [x] I have followed the instructions in the PR template --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 10172b66252..b551f9720de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"