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
This commit is contained in:
Damjan Georgievski 2019-01-18 00:14:16 +01:00
parent 072b427828
commit 0596f72c8d

View file

@ -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;