From f21f36b828f326dfb68f02642b6bb18c0094d08f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 21:24:51 +0000 Subject: [PATCH] Update pprof requirement from 0.14 to 0.15 Updates the requirements on [pprof](https://github.com/tikv/pprof-rs) to permit the latest version. - [Changelog](https://github.com/tikv/pprof-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/tikv/pprof-rs/commits) --- updated-dependencies: - dependency-name: pprof dependency-version: 0.15.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- src/kete_core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kete_core/Cargo.toml b/src/kete_core/Cargo.toml index 0bcd94f..5df1520 100644 --- a/src/kete_core/Cargo.toml +++ b/src/kete_core/Cargo.toml @@ -36,7 +36,7 @@ criterion = { version = "*", features = ["html_reports"] } # pprof is used for flame graphs, this is failing on windows currently so only # linux and mac are supported here. [target.'cfg(target_os = "linux")'.dev-dependencies] -pprof = { version = "0.14", features = ["flamegraph", "criterion"] } +pprof = { version = "0.15", features = ["flamegraph", "criterion"] } # macos needs the frame-pointer flag, however this doesn't function on linux [target.'cfg(target_os = "macos")'.dev-dependencies]