Update dependencies, use tikv-jemallocator (#73)

Signed-off-by: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
This commit is contained in:
Jan Alexander Steffens
2021-10-26 09:54:56 +02:00
committed by GitHub
parent 83e8dedfa9
commit 4c7316311b
6 changed files with 163 additions and 159 deletions

View File

@@ -17,7 +17,7 @@ clap = "2.33.0"
openssl = "0.10.32"
postgres = "0.19.0"
postgres-openssl = "0.5.0"
jemallocator = "0.3.2"
tikv-jemallocator = "0.4.1"
rand = "0.8.0"
serial_test = "0.5.1"
synapse_compress_state = { path = "../", features = ["no-progress-bars"] }

View File

@@ -17,7 +17,7 @@
//! continue from where it left off.
#[global_allocator]
static GLOBAL: jemallocator::Jemalloc = jemallocator::Jemalloc;
static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;
use clap::{crate_authors, crate_description, crate_name, crate_version, value_t, App, Arg};
use log::LevelFilter;