From bc91a9602d053b3384cb2fdf778b602e982bb7ac Mon Sep 17 00:00:00 2001 From: Sean Griffin Date: Mon, 11 Mar 2019 17:37:57 -0600 Subject: [PATCH] Turn off debug symbols It looks like hyper may have fixed our memory issue after all. I'd still like to spend some time looking at heap dumps because I still think our memory usage is higher than reasonable, but it's low priority and not something I'm going to do this week, and leaving debug info on makes our binaries *huge* --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e4031889d10..5a824f34355 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,6 @@ edition = "2018" [profile.release] opt-level = 2 -debug = true [lib] name = "cargo_registry"