rlwfc 0.1.1

Rust implementation of Wave Function Collapse (WFC) algorithm with type safety and direction-aware grid system
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"