Skip to content

Commit 32e5441

Browse files
committed
Disable optimizations for faster testing
1 parent 0d6e68c commit 32e5441

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

Cargo.toml

+10-4
Original file line numberDiff line numberDiff line change
@@ -322,11 +322,17 @@ pixi_pty = { path = "crates/pixi_pty" }
322322
signal-hook = { workspace = true }
323323

324324
[profile.dist]
325-
codegen-units = 1
325+
# codegen-units = 1
326+
#inherits = "release"
327+
#lto = "fat"
328+
#opt-level = 3
329+
#strip = "symbols"
330+
# codegen-units = 1
331+
codegen-units = 16
326332
inherits = "release"
327-
lto = "fat"
328-
opt-level = 3
329-
strip = "symbols"
333+
lto = false
334+
opt-level = 0
335+
strip = false
330336

331337
[profile.ci]
332338
codegen-units = 16

0 commit comments

Comments
 (0)