pimpbunny fixed
This commit is contained in:
11
Cargo.toml
11
Cargo.toml
@@ -42,3 +42,14 @@ opt-level = 0
|
||||
debug = 1
|
||||
codegen-units = 256
|
||||
incremental = true
|
||||
|
||||
[profile.release]
|
||||
# Make release builds faster by trading some peak perf for compile time.
|
||||
# - opt-level = 2: slightly less optimization than 3 but noticeably faster builds.
|
||||
# - codegen-units > 1: enables parallel code generation across crates.
|
||||
# - lto = false: disabling link-time optimization speeds up linking.
|
||||
# - debug = 0: skip debug info to reduce build work.
|
||||
opt-level = 3
|
||||
codegen-units = 16
|
||||
lto = false
|
||||
debug = 0
|
||||
|
||||
Reference in New Issue
Block a user