summaryrefslogtreecommitdiff
path: root/webapp/Cargo.toml
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2022-09-07 10:00:51 -0400
committerKjetil Orbekk <kj@orbekk.com>2022-09-07 10:01:39 -0400
commit1fa6d19a698f62ea2e57164fa1e5f088a8e2ac62 (patch)
tree5902104858b69e108c3f8057257e021a9e208c41 /webapp/Cargo.toml
parent865a3eb1066f5bb140a6ce603e1162460a336934 (diff)
Fix rust warnings
Diffstat (limited to 'webapp/Cargo.toml')
-rw-r--r--webapp/Cargo.toml12
1 files changed, 0 insertions, 12 deletions
diff --git a/webapp/Cargo.toml b/webapp/Cargo.toml
index d64ed32..91fd87c 100644
--- a/webapp/Cargo.toml
+++ b/webapp/Cargo.toml
@@ -20,15 +20,3 @@ lazy_static = "1.4"
[dev-dependencies]
env_logger = "0.8.4"
dotenv = "0.15"
-
-[profile.release]
-# less code to include into binary
-panic = 'abort'
-# optimization over all codebase ( better optimization, slower build )
-codegen-units = 1
-# optimization for size ( more aggressive )
-opt-level = 'z'
-# optimization for size
-# opt-level = 's'
-# link time optimization using using whole-program analysis
-lto = true