21 lines
419 B
TOML
21 lines
419 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"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
lto = "fat"
|
|
debug = false
|