summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-05-03 00:36:33 +0200
committerGitHub <noreply@github.com>2023-05-03 00:36:33 +0200
commit798c1ad0f1de80ff0e7196b6140a3f74e31fe111 (patch)
tree44233e68b9846ee3335b68b3ddaff00bec76d91f /core
parentadcda4fa640939682076e793f12a5b22e3de1f50 (diff)
perf: use jemalloc as global allocator (#18957)
Follow up to https://github.com/denoland/deno/pull/18875 that enables `jemalloc` as a global allocator for the Deno CLI.
Diffstat (limited to 'core')
-rw-r--r--core/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 0e0b1d2c7..e2ffca657 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -40,7 +40,7 @@ url.workspace = true
v8.workspace = true
[target.'cfg(not(target_env = "msvc"))'.dependencies]
-tikv-jemalloc-sys = "0.5"
+tikv-jemalloc-sys.workspace = true
[[example]]
name = "http_bench_json_ops"