Performance optimization settings & switch to nightly rust

This commit is contained in:
2025-12-06 13:51:45 -05:00
parent 9de4d77a63
commit 74c28c9344
3 changed files with 13 additions and 5 deletions

View File

@@ -20,6 +20,12 @@ test-log = { version = "0.2", default-features = false, features = ["trace"] }
[profile.dev.package.backtrace]
opt-level = 3
# Gotta go fast
[profile.release]
codegen-units = 1
lto = "fat"
panic = "abort"
[lib]
name = "aoc"
path = "src/lib.rs"