Replace jemalloc with mimalloc

This commit is contained in:
Frank Denis 2022-05-25 13:39:09 +02:00
parent 533c29ec1e
commit db9c8634e3
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ tls = ["libdoh/tls"]
libdoh = { path = "src/libdoh", version = "0.9.3", default-features = false }
clap = { version = "3.1.5", features = ["std", "cargo", "wrap_help"] }
dnsstamps = "0.1.9"
jemallocator = "0.3.2"
mimalloc = { version = "0.1.29", default-features = false }
[package.metadata.deb]
extended-description = """\

View file

@ -1,5 +1,5 @@
#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
#[macro_use]
extern crate clap;