From 0596f72c8d4365531d9e6ec716f43c0d9ed6af5b Mon Sep 17 00:00:00 2001 From: Damjan Georgievski Date: Fri, 18 Jan 2019 00:14:16 +0100 Subject: [PATCH] rust 1.32 now defaults to the system allocator https://blog.rust-lang.org/2019/01/17/Rust-1.32.0.html#jemalloc-is-removed-by-default --- src/main.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main.rs b/src/main.rs index bf5daba..0e30164 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,11 +8,6 @@ extern crate percent_encoding; #[macro_use] extern crate clap; #[macro_use] extern crate log; -use std::alloc::System; - -#[global_allocator] -static GLOBAL: System = System; - mod channel; mod web;