[package]
edition = "2024"
rust-version = "1.89.0"
name = "engawa"
version = "0.1.2"
authors = ["pleme-io"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Engawa (縁側) — typed render-graph IR for pleme-io GPU consumers. Bevy-inspired render-graph design distilled to mado-shaped needs: no ECS, no game loop, no asset pipeline. Pure-data IR + topo sort + cycle detection + integration with garasu's headless GPU primitives."
homepage = "https://github.com/pleme-io/engawa"
documentation = "https://docs.rs/engawa"
readme = "README.md"
keywords = [
"wgpu",
"render-graph",
"shader",
"effects",
"pleme-io",
]
categories = [
"rendering",
"graphics",
]
license = "MIT"
repository = "https://github.com/pleme-io/engawa"
[lib]
name = "engawa"
path = "src/lib.rs"
[[test]]
name = "decoration_matrix"
path = "tests/decoration_matrix.rs"
[[test]]
name = "dispatch_recording"
path = "tests/dispatch_recording.rs"
[[test]]
name = "graph_compile"
path = "tests/graph_compile.rs"
[[test]]
name = "graph_proptest"
path = "tests/graph_proptest.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1