diff --git a/Cargo.toml b/Cargo.toml index c113d7f..ae5884c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,20 @@ version = "0.1.0" edition = "2021" +[profile.release] +opt-level = 3 +debug = false +strip = true +lto = true +codegen-units = 1 +panic = 'abort' + +[profile.profiling] +inherits = "release" +debug = true +strip = false + + [dependencies] once_cell = "1.21.1"