From a50f64e20aa987f42f8764f750c325940d5aba54 Mon Sep 17 00:00:00 2001 From: lexara-prime-ai Date: Fri, 5 Jul 2024 21:32:21 +0000 Subject: [PATCH] Attempt to reduce bundle size --- Cargo.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dbffdce..cd9fd91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,9 +22,17 @@ license = "BSD-1-Clause" [dependencies] anyhow = "1.0.86" chrono = { version = "0.4.38", features = ["serde"] } -clickhouse = "0.11.6" dotenv = "0.15.0" reqwest = { version = "0.12.5", features = ["json"] } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.119" tokio = { version = "1.38.0", features = ["full"] } + +[profile.release] +strip = true + +# [profile.release] +# opt-level = "z" + +# [profile.release] +# lto = true