From 9997667a667ed7f7d62d5ca962eca6f9e25c3a16 Mon Sep 17 00:00:00 2001 From: Ryo Yamashita Date: Sun, 15 Dec 2019 13:16:26 +0900 Subject: [PATCH] `codegen-units = 1` and `incremental = false` --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 5ca8954..374adf5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,10 @@ name = "atcoder-rust-base" version = "0.1.0" edition = "2018" +[profile.release] +codegen-units = 1 +incremental = false + [workspace] exclude = ["./tools"]