diff options
author | Mukilan Thiyagarajan <mukilan@igalia.com> | 2024-07-22 13:25:46 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-22 07:55:46 +0000 |
commit | a007baa4cf6791cb42e2d7ec46eb9cc803f24b29 (patch) | |
tree | 58e57ba8fc56a95791f25bc5774ff64a870bef19 /components/profile/Cargo.toml | |
parent | f6dc35f11dcbc7f3cfeb7f0e804c5f9851088ebe (diff) | |
download | servo-a007baa4cf6791cb42e2d7ec46eb9cc803f24b29.tar.gz servo-a007baa4cf6791cb42e2d7ec46eb9cc803f24b29.zip |
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>
Diffstat (limited to 'components/profile/Cargo.toml')
-rw-r--r-- | components/profile/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/profile/Cargo.toml b/components/profile/Cargo.toml index e32e195822f..eacd0b55d0e 100644 --- a/components/profile/Cargo.toml +++ b/components/profile/Cargo.toml @@ -26,4 +26,4 @@ regex = { workspace = true } [target.'cfg(not(target_os = "windows"))'.dependencies] libc = { workspace = true } [target.'cfg(not(any(target_os = "windows", target_env = "ohos")))'.dependencies] -jemalloc-sys = { workspace = true } +tikv-jemalloc-sys = { workspace = true } |