From 848ec369cc08c4388610ab588c9b87b826feff80 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Nov 2025 13:39:31 +0000 Subject: [PATCH] Bump pprof from 0.13.0 to 0.14.0 in /quickwit Bumps [pprof](https://github.com/tikv/pprof-rs) from 0.13.0 to 0.14.0. - [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.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- quickwit/Cargo.lock | 45 ++++++++++++++++++++++++++++++++++++++++++--- quickwit/Cargo.toml | 2 +- 2 files changed, 43 insertions(+), 4 deletions(-) diff --git a/quickwit/Cargo.lock b/quickwit/Cargo.lock index 2eb16ce14f3..f789470339a 100644 --- a/quickwit/Cargo.lock +++ b/quickwit/Cargo.lock @@ -99,6 +99,15 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd" +[[package]] +name = "aligned-vec" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b" +dependencies = [ + "equator", +] + [[package]] name = "alloca" version = "0.4.0" @@ -2801,6 +2810,26 @@ dependencies = [ "termcolor", ] +[[package]] +name = "equator" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc" +dependencies = [ + "equator-macro", +] + +[[package]] +name = "equator-macro" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.111", +] + [[package]] name = "equivalent" version = "1.0.2" @@ -6232,10 +6261,11 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] name = "pprof" -version = "0.13.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef5c97c51bd34c7e742402e216abdeb44d415fbe6ae41d56b114723e953711cb" +checksum = "afad4d4df7b31280028245f152d5a575083e2abb822d05736f5e47653e77689f" dependencies = [ + "aligned-vec", "backtrace", "cfg-if", "findshlibs", @@ -6244,8 +6274,8 @@ dependencies = [ "log", "nix", "once_cell", - "parking_lot 0.12.5", "smallvec", + "spin 0.10.0", "symbolic-demangle", "tempfile", "thiserror 1.0.69", @@ -9101,6 +9131,15 @@ dependencies = [ "lock_api", ] +[[package]] +name = "spin" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591" +dependencies = [ + "lock_api", +] + [[package]] name = "spki" version = "0.6.0" diff --git a/quickwit/Cargo.toml b/quickwit/Cargo.toml index 2d446e5264c..9c57442c447 100644 --- a/quickwit/Cargo.toml +++ b/quickwit/Cargo.toml @@ -167,7 +167,7 @@ pnet = { version = "0.33", features = ["std"] } postcard = { version = "1.1", features = [ "use-std", ], default-features = false } -pprof = { version = "0.13", features = ["flamegraph"] } +pprof = { version = "0.14", features = ["flamegraph"] } predicates = "3" prettyplease = "0.2" proc-macro2 = "1.0"