neon_arch
commited on
Commit
•
55a7125
1
Parent(s):
0e1cb6f
⚙️ refactor: add build time binary file optimization (#180)(#178)
Browse files- Cargo.lock +1 -1
- Cargo.toml +2 -2
Cargo.lock
CHANGED
@@ -67,7 +67,7 @@ dependencies = [
|
|
67 |
"actix-rt",
|
68 |
"actix-service",
|
69 |
"actix-utils",
|
70 |
-
"ahash
|
71 |
"base64 0.21.3",
|
72 |
"bitflags 2.4.0",
|
73 |
"brotli",
|
|
|
67 |
"actix-rt",
|
68 |
"actix-service",
|
69 |
"actix-utils",
|
70 |
+
"ahash",
|
71 |
"base64 0.21.3",
|
72 |
"bitflags 2.4.0",
|
73 |
"brotli",
|
Cargo.toml
CHANGED
@@ -56,10 +56,10 @@ debug = false # This should only be commented when testing with dhat profiler
|
|
56 |
split-debuginfo = '...'
|
57 |
debug-assertions = false
|
58 |
overflow-checks = false
|
59 |
-
lto =
|
60 |
panic = 'abort'
|
61 |
incremental = false
|
62 |
-
codegen-units =
|
63 |
rpath = false
|
64 |
strip = "debuginfo"
|
65 |
|
|
|
56 |
split-debuginfo = '...'
|
57 |
debug-assertions = false
|
58 |
overflow-checks = false
|
59 |
+
lto = true
|
60 |
panic = 'abort'
|
61 |
incremental = false
|
62 |
+
codegen-units = 1
|
63 |
rpath = false
|
64 |
strip = "debuginfo"
|
65 |
|