2023-07-20 14:36:42 +02:00
|
|
|
[package]
|
|
|
|
name = "gol-bitwise"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-20 20:06:58 +02:00
|
|
|
rand = "0.8.5"
|
2023-07-21 17:34:05 +02:00
|
|
|
|
|
|
|
[[bench]]
|
2023-07-21 18:09:17 +02:00
|
|
|
name = "main"
|
2023-07-21 17:34:05 +02:00
|
|
|
harness = false
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = { version = "0.5.1", default-features = false, features = [
|
|
|
|
"cargo_bench_support",
|
|
|
|
] }
|