From 5f5f105c0df8d5b0a689cd6ff0176d23919bed3d Mon Sep 17 00:00:00 2001 From: DJMrTV Date: Fri, 14 Feb 2025 10:26:09 +0100 Subject: [PATCH] feat(crate): enable optimizations --- Cargo.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index af0705d..7d56b91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,18 @@ name = "professor" version = "0.1.0" edition = "2021" +[profile.release] +opt-level = 3 +overflow-checks = false +debug = "none" +debug-assertions = false +strip = true +lto = "fat" +panic = "abort" + + + + [dependencies] dotenv = "0.15.0" regex = "1.11.1"