diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-05-03 00:36:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-03 00:36:33 +0200 |
commit | 798c1ad0f1de80ff0e7196b6140a3f74e31fe111 (patch) | |
tree | 44233e68b9846ee3335b68b3ddaff00bec76d91f /core | |
parent | adcda4fa640939682076e793f12a5b22e3de1f50 (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.toml | 2 |
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" |