This commit is contained in:
2025-02-26 19:50:40 -05:00
parent cd0ac5f538
commit bbeb1b8b37
5 changed files with 12 additions and 13 deletions

View File

@@ -11,7 +11,6 @@ path = "src/lib.rs"
name = "othello_game"
path = "src/main.rs"
[profile.release]
# increases perf at the cost of compile-time
codegen-units = 1 # ~4-5% perf bump
@@ -22,7 +21,6 @@ inherits = "release"
# for profiling
debug = true
[features]
bitvec = [ "dep:bitvec" ]
@@ -33,13 +31,13 @@ const_fn = "0.4"
either = "1.13"
indicatif = "0.17"
lazy_static = "1.5"
nohash-hasher = "0.2.0"
nohash-hasher = "0.2"
num = "0.4"
rand = "0.9"
static_assertions = "1.1"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
criterion = { version = "0.5", features = [ "html_reports" ] }
[[bench]]
name = "future_children"