From 26c4c14d96ba6a1caa401b41bfc276a2a770fddb Mon Sep 17 00:00:00 2001 From: ahgamut <41098605+ahgamut@users.noreply.github.com> Date: Tue, 21 Jun 2022 23:44:49 +0530 Subject: [PATCH] add cargo config --- .cargo/config.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .cargo/config.toml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..76b07c2 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,7 @@ +[profile.dev] +panic = "abort" +opt-level = "s" + +[profile.release] +panic = "abort" +opt-level = "s"