diff options
author | Canop <cano.petrole@gmail.com> | 2019-06-30 16:42:54 +0200 |
---|---|---|
committer | Canop <cano.petrole@gmail.com> | 2019-06-30 16:42:54 +0200 |
commit | beb05596a01a6ae40b23878a0fe273db0e8303b5 (patch) | |
tree | c433d9d0ba906f61ae599bfdc733f0c7c14beeb3 | |
parent | 950f57168770798746860a8d1c6727a1f504322a (diff) |
remove traces of jemallocator
-rw-r--r-- | Cargo.toml | 1 | ||||
-rw-r--r-- | src/main.rs | 1 |
2 files changed, 0 insertions, 2 deletions
@@ -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; |