[package]
edition = "2021"
rust-version = "1.70"
name = "rlwfc"
version = "0.1.1"
authors = ["amazcuter <amazcuter@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of Wave Function Collapse (WFC) algorithm with type safety and direction-aware grid system"
homepage = "https://github.com/amazcuter/rlwfc"
documentation = "https://docs.rs/rlwfc"
readme = "README.md"
keywords = [
"wfc",
"pcg",
"algorithm",
"grid",
]
categories = [
"algorithms",
"game-development",
"graphics",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/amazcuter/rlwfc"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
[lib]
name = "rlwfc"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "grid_builder_demo"
path = "examples/grid_builder_demo.rs"
[[example]]
name = "orthogonal_2d_wfc"
path = "examples/orthogonal_2d_wfc.rs"
doc-scrape-examples = true
[[example]]
name = "tile_system_demo"
path = "examples/tile_system_demo.rs"
[[test]]
name = "compatibility_test"
path = "tests/compatibility_test.rs"
[dependencies.petgraph]
version = "0.8"
[dependencies.rand]
version = "0.9"
[dev-dependencies.criterion]
version = "0.6"