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 /Cargo.lock | |
| 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 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index f4647350b..8c4f0f6ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -770,6 +770,7 @@ dependencies = [ "text-size", "text_lines", "thiserror", + "tikv-jemallocator", "tokio", "tokio-util", "tower-lsp", @@ -5142,6 +5143,16 @@ dependencies = [ ] [[package]] +name = "tikv-jemallocator" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20612db8a13a6c06d57ec83953694185a367e16945f66565e8028d2c0bd76979" +dependencies = [ + "libc", + "tikv-jemalloc-sys", +] + +[[package]] name = "time" version = "0.3.20" source = "registry+https://github.com/rust-lang/crates.io-index" |
