Switch from jemalloc to mimalloc

tracing-locks
Frank Denis 2 years ago
parent 9a3cde4ba5
commit 748b944a61

@ -33,9 +33,9 @@ hyper = { version = "0.14.16", default_features = false, features = [
"http1", "http1",
], optional = true } ], optional = true }
ipext = "0.1.0" ipext = "0.1.0"
jemallocator = "0.3.2"
libsodium-sys-stable = "1.19.21" libsodium-sys-stable = "1.19.21"
log = { version = "0.4.14", features = ["std", "release_max_level_debug"] } log = { version = "0.4.14", features = ["std", "release_max_level_debug"] }
mimalloc = { version = "0.1.29", default-features = false }
socket2 = "0.4.4" socket2 = "0.4.4"
parking_lot = "0.12.0" parking_lot = "0.12.0"
privdrop = "0.5.1" privdrop = "0.5.1"

@ -7,7 +7,7 @@
#![allow(dead_code)] #![allow(dead_code)]
#[global_allocator] #[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc; static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
#[macro_use] #[macro_use]
extern crate derivative; extern crate derivative;

Loading…
Cancel
Save