physarum/Cargo.toml
2025-03-28 19:37:43 -04:00

28 lines
546 B
TOML

[package]
name = "physarum"
version = "0.1.0"
authors = ["Simon Gardling <titaniumtown@gmail.com>", "mindv0rtex <mindv0rtex@users.noreply.github.com>"]
edition = "2021"
[dependencies]
image = "0.25"
indicatif = { version = "0.17", features = [ "rayon" ] }
itertools = "0.14"
rand = "0.9"
rand_distr = "0.5"
rayon = "1.10"
fastapprox = "0.3"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "benchmark"
harness = false
[profile.release]
codegen-units = 1
opt-level = 3
lto = "fat"
debug = false