mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
deps: switch to tikv-jemallocator
crates in Cargo.toml (#32828)
`jemallocator` and `jemallocator-sys` crates are same as the `tikv-*` versions and these aliases were maintained for historical reasons, based on crates.io documentation. For newer projects, it is recommended to use the `tikv-` versions of the crate. Even though Servo is not a new project, it makes sense to switch to the newer version for the sake of clarity. Also, more importantly, `tikv-jemallocator` has new release (0.6.0) which includes a fix for #32720. There doesn't seem to be a corresponding version publised for the `jemallocator` crate. Fixes #32720 Signed-off-by: Mukilan Thiyagarajan <mukilan@igalia.com>
This commit is contained in:
parent
f6dc35f11d
commit
a007baa4cf
6 changed files with 32 additions and 32 deletions
|
@ -500,7 +500,7 @@ mod system_reporter {
|
|||
}
|
||||
|
||||
#[cfg(not(any(target_os = "windows", target_env = "ohos")))]
|
||||
use jemalloc_sys::mallctl;
|
||||
use tikv_jemalloc_sys::mallctl;
|
||||
|
||||
#[cfg(not(any(target_os = "windows", target_env = "ohos")))]
|
||||
fn jemalloc_stat(value_name: &str) -> Option<usize> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue