fix(deps): update rust crate mimalloc to v0.1.49 (#1171)

* fix(deps): update rust crate mimalloc to v0.1.49

* fix(deps): update mimalloc to v0.1.49 and adjust feature dependencies

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: monosans <hsyqixco@protonmail.com>
This commit is contained in:
renovate[bot]
2026-04-20 08:53:56 +00:00
committed by GitHub
co-authored by renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> monosans
parent 8ccb7c4dce
commit 6ea5eedc84
2 changed files with 7 additions and 8 deletions
Generated
+4 -5
View File
@@ -1396,12 +1396,11 @@ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
[[package]]
name = "libmimalloc-sys"
version = "0.1.44"
version = "0.1.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
checksum = "bc89deee4af0429081d2a518c0431ae068222a5a262a3bc6ff4d8535ec2e02fe"
dependencies = [
"cc",
"libc",
]
[[package]]
@@ -1501,9 +1500,9 @@ dependencies = [
[[package]]
name = "mimalloc"
version = "0.1.48"
version = "0.1.49"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
checksum = "aca3c01a711f395b4257b81674c0e90e8dd1f1e62c4b7db45f684cc7a4fcb18a"
dependencies = [
"libmimalloc-sys",
]
+3 -3
View File
@@ -79,13 +79,13 @@ url = "=2.5.8"
tikv-jemallocator = { version = "=0.6.1", optional = true }
[target.'cfg(all(any(target_arch = "aarch64", target_arch = "x86_64"), any(target_os = "linux", target_os = "macos", target_os = "windows")))'.dependencies]
mimalloc = { version = "=0.1.48", optional = true }
mimalloc = { version = "=0.1.49", optional = true }
[features]
dhat = ["dep:dhat"]
jemalloc = ["dep:tikv-jemallocator"]
mimalloc_v2 = ["dep:mimalloc"]
mimalloc_v3 = ["dep:mimalloc", "mimalloc/v3"]
mimalloc_v2 = ["dep:mimalloc", "mimalloc/v2"]
mimalloc_v3 = ["dep:mimalloc"]
tokio-multi-thread = []
tui = [
"dep:crossterm",