diff --git a/Cargo.lock b/Cargo.lock index 15e9d65c9fcd..f4d87c6311cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11800,9 +11800,9 @@ dependencies = [ [[package]] name = "tikv-jemalloc-ctl" -version = "0.5.4" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "619bfed27d807b54f7f776b9430d4f8060e66ee138a28632ca898584d462c31c" +checksum = "f21f216790c8df74ce3ab25b534e0718da5a1916719771d3fec23315c99e468b" dependencies = [ "libc", "paste", @@ -11811,9 +11811,9 @@ dependencies = [ [[package]] name = "tikv-jemalloc-sys" -version = "0.5.4+5.3.0-patched" +version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1" +checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d" dependencies = [ "cc", "libc", @@ -11821,9 +11821,9 @@ dependencies = [ [[package]] name = "tikv-jemallocator" -version = "0.5.4" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca" +checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865" dependencies = [ "libc", "tikv-jemalloc-sys", diff --git a/src/cmd/Cargo.toml b/src/cmd/Cargo.toml index 5385577c2e0b..405c855c8ac8 100644 --- a/src/cmd/Cargo.toml +++ b/src/cmd/Cargo.toml @@ -80,7 +80,7 @@ tonic.workspace = true tracing-appender = "0.2" [target.'cfg(not(windows))'.dependencies] -tikv-jemallocator = "0.5" +tikv-jemallocator = "0.6" [dev-dependencies] client = { workspace = true, features = ["testing"] } diff --git a/src/common/mem-prof/Cargo.toml b/src/common/mem-prof/Cargo.toml index 666565264508..741a4155f9b1 100644 --- a/src/common/mem-prof/Cargo.toml +++ b/src/common/mem-prof/Cargo.toml @@ -15,8 +15,8 @@ tempfile = "3.4" tokio.workspace = true [target.'cfg(not(windows))'.dependencies] -tikv-jemalloc-ctl = { version = "0.5", features = ["use_std"] } +tikv-jemalloc-ctl = { version = "0.6", features = ["use_std", "stats"] } [target.'cfg(not(windows))'.dependencies.tikv-jemalloc-sys] features = ["stats", "profiling", "unprefixed_malloc_on_supported_platforms"] -version = "0.5" +version = "0.6" diff --git a/src/servers/Cargo.toml b/src/servers/Cargo.toml index bd68a0209936..94f1ac9ebcdc 100644 --- a/src/servers/Cargo.toml +++ b/src/servers/Cargo.toml @@ -109,7 +109,7 @@ uuid.workspace = true zstd.workspace = true [target.'cfg(not(windows))'.dependencies] -tikv-jemalloc-ctl = { version = "0.5", features = ["use_std"] } +tikv-jemalloc-ctl = { version = "0.6", features = ["use_std"] } [dev-dependencies] auth = { workspace = true, features = ["testing"] }