Compare commits
No commits in common. "498680aacadc3d538f85400034188744c0430282" and "2429d7a4ddb42003ad274bdca1e252de6613722f" have entirely different histories.
498680aaca
...
2429d7a4dd
11
Cargo.toml
11
Cargo.toml
@ -5,8 +5,6 @@ edition = "2024"
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = { version = "0.7", features = ["html_reports"] }
|
||||
[build]
|
||||
rustflags = ["-C", "target-cpu=native"]
|
||||
|
||||
[[bench]]
|
||||
name = "bench_aoc_1"
|
||||
@ -18,12 +16,5 @@ harness = false
|
||||
[[bench]]
|
||||
name = "bench_aoc_3"
|
||||
harness = false
|
||||
[[bench]]
|
||||
name = "bench_aoc_4"
|
||||
harness = false
|
||||
[dependencies]
|
||||
[profile.bench]
|
||||
opt-level = 3
|
||||
lto = "fat" # "Link Time Optimization" - Critical for micro-benchmarks
|
||||
codegen-units = 1 # Slows compile time, but makes faster code
|
||||
panic = "abort" # Removes stack unwinding checks (faster)
|
||||
strength_reduce = "0.2.4"
|
||||
@ -1,4 +1,3 @@
|
||||
pub mod aoc_1;
|
||||
pub mod aoc_2;
|
||||
pub mod aoc_3;
|
||||
pub mod aoc_4;
|
||||
|
||||
@ -1,2 +1 @@
|
||||
#![feature(portable_simd)]
|
||||
pub mod aoc;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user