From bce7cd0855ded5f71e564d8aeb57bd85b12efa2c Mon Sep 17 00:00:00 2001 From: Alexander Zaitsev Date: Thu, 10 Oct 2024 06:34:02 +0300 Subject: [PATCH] feat: enable LTO (#229) Resolves https://github.com/KipData/FnckSQL/issues/228 --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index be27b89c..a70d9a85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -83,4 +83,7 @@ pprof = { version = "0.13", features = ["flamegraph", "criterion"] } members = [ "tests/sqllogictest", "tests/macros-test" -] \ No newline at end of file +] + +[profile.release] +lto = true