- Update landgen to use the latest rand crate
- Change Size width and height from usize to u32 for portability
- Implement backtracking in wfc generator
[package]
name = "landgen"
version = "0.1.0"
authors = ["Andrey Korotaev <a.korotaev@hedgewars.org>"]
edition = "2021"
[dependencies]
integral-geometry = { path = "../integral-geometry" }
land2d = { path = "../land2d" }
vec2d = { path = "../vec2d" }
png = "0.17"
rand = "0.9"
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "benchmark"
harness = false