From f689c428b2bbe8fce4007b6b1d7484b1f8636d6a Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Sun, 21 Nov 2021 22:05:30 +0100 Subject: [PATCH] upgrade pprof --- Cargo.lock | 26 ++++++++++++++++++++------ Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 12048bf0..26dcc474 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -145,9 +145,9 @@ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" [[package]] name = "bitflags" -version = "1.2.1" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bugreport" @@ -382,6 +382,18 @@ dependencies = [ "thiserror", ] +[[package]] +name = "findshlibs" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" +dependencies = [ + "cc", + "lazy_static", + "libc", + "winapi", +] + [[package]] name = "flate2" version = "1.0.22" @@ -769,9 +781,9 @@ dependencies = [ [[package]] name = "nix" -version = "0.20.2" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5e06129fb611568ef4e868c14b326274959aa70ff7776e9d55323531c374945" +checksum = "f305c2c2e4c39a82f7bf0bf65fb557f9070ce06781d4f2454295cc34b1c43188" dependencies = [ "bitflags", "cc", @@ -958,11 +970,13 @@ dependencies = [ [[package]] name = "pprof" -version = "0.5.1" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc842ca3fb958643d1696cfdada75410482480c11a7129463924fff5ab18d405" +checksum = "9d47237f290398d4cfcd293fcc9dcc53cdb1f9bde65b78fcbfaafa7f8190d9e9" dependencies = [ "backtrace", + "cfg-if", + "findshlibs", "inferno", "lazy_static", "libc", diff --git a/Cargo.toml b/Cargo.toml index d5da0839..f9e2970e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ which = "4.1" # pprof is not available on windows [target.'cfg(not(windows))'.dependencies] -pprof = { version = "0.5", features = ["flamegraph"], optional = true } +pprof = { version = "0.6", features = ["flamegraph"], optional = true } [dev-dependencies] pretty_assertions = "1.0"