summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2019-06-30 16:42:54 +0200
committerCanop <cano.petrole@gmail.com>2019-06-30 16:42:54 +0200
commitbeb05596a01a6ae40b23878a0fe273db0e8303b5 (patch)
treec433d9d0ba906f61ae599bfdc733f0c7c14beeb3
parent950f57168770798746860a8d1c6727a1f504322a (diff)
remove traces of jemallocator
-rw-r--r--Cargo.toml1
-rw-r--r--src/main.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e00944a..a72159d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,7 +29,6 @@ termimad = "0.3.9"
[target.'cfg(unix)'.dependencies]
mimalloc = { version = "0.1.3", default-features = false }
-#jemallocator = "0.3"
users = "0.9"
[target.'cfg(windows)'.dependencies]
diff --git a/src/main.rs b/src/main.rs
index 49108dd..1ac434b 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -3,7 +3,6 @@ use mimalloc::MiMalloc;
#[cfg(unix)]
#[global_allocator]
static GLOBAL: MiMalloc = MiMalloc;
-//static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
#[macro_use]
extern crate lazy_static;