rlwfc 0.1.0

Rust implementation of Wave Function Collapse (WFC) algorithm with type safety and direction-aware grid system
Documentation
[dependencies.petgraph]
version = "0.8"

[dependencies.rand]
version = "0.9"

[dev-dependencies.criterion]
version = "0.6"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "grid_builder_demo"
path = "examples/grid_builder_demo.rs"

[[example]]
doc-scrape-examples = true
name = "orthogonal_2d_wfc"
path = "examples/orthogonal_2d_wfc.rs"

[[example]]
name = "tile_system_demo"
path = "examples/tile_system_demo.rs"

[features]
default = []

[lib]
name = "rlwfc"
path = "src/lib.rs"

[package]
authors = ["amazcuter <amazcuter@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "game-development", "graphics", "mathematics"]
description = "Rust implementation of Wave Function Collapse (WFC) algorithm with type safety and direction-aware grid system"
documentation = "https://docs.rs/rlwfc"
edition = "2021"
homepage = "https://github.com/amazcuter/rlwfc"
keywords = ["wfc", "pcg", "algorithm", "grid"]
license = "MIT OR Apache-2.0"
name = "rlwfc"
readme = "README.md"
repository = "https://github.com/amazcuter/rlwfc"
rust-version = "1.70"
version = "0.1.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "compatibility_test"
path = "tests/compatibility_test.rs"