From 032be4e5da36bc404b0845b835f3e19e83608c7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 11:07:57 +0800 Subject: [PATCH] chore(deps): Bump jemalloc_pprof from 0.1.0 to 0.2.0 (#566) Bumps [jemalloc_pprof](https://github.com/polarsignals/rust-jemalloc-pprof) from 0.1.0 to 0.2.0. - [Commits](https://github.com/polarsignals/rust-jemalloc-pprof/commits) --- updated-dependencies: - dependency-name: jemalloc_pprof dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 25 +++++++++++++++++++------ dragonfly-client/Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a9e0ff17..142f6fc2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2076,17 +2076,14 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" [[package]] name = "jemalloc_pprof" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45b38a2cc3eb7b0e332c6368a6fd6a1a603a5be9526f0810f8e0682513538541" +checksum = "9dc0a5dcb97aa2ec4e2653ab53050676b530fe41515f07fbd4d51bba9e0b1d41" dependencies = [ "anyhow", - "flate2", "libc", - "num", "once_cell", - "paste", - "prost 0.11.9", + "rust_jemalloc_pprof_internal", "tempfile", "tikv-jemalloc-ctl", "tokio", @@ -3501,6 +3498,22 @@ dependencies = [ "chrono", ] +[[package]] +name = "rust_jemalloc_pprof_internal" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0c886bcae195e803348bfb93d12f0045ae4a43d543f4d476cd9d444e6782e0b" +dependencies = [ + "anyhow", + "flate2", + "libc", + "num", + "once_cell", + "paste", + "prost 0.11.9", + "tracing", +] + [[package]] name = "rustc-demangle" version = "0.1.23" diff --git a/dragonfly-client/Cargo.toml b/dragonfly-client/Cargo.toml index 199ca798..0e64db82 100644 --- a/dragonfly-client/Cargo.toml +++ b/dragonfly-client/Cargo.toml @@ -89,4 +89,4 @@ termion = "4.0.2" tikv-jemallocator = { version = "0.5.4", features = ["profiling", "stats", "unprefixed_malloc_on_supported_platforms", "background_threads"] } [target.'cfg(target_os = "linux")'.dependencies] -jemalloc_pprof = "0.1.0" +jemalloc_pprof = "0.2.0"