shdrlib 0.1.5

A three-tiered Vulkan shader compilation and rendering framework built in pure Rust
Documentation
[[bin]]
name = "01_triangle_raw"
path = "demos/core/01_triangle_raw.rs"

[[bin]]
name = "02_compute_shader"
path = "demos/core/02_compute_shader.rs"

[[bin]]
name = "05_custom_integration"
path = "demos/core/05_custom_integration.rs"

[[bin]]
name = "ex_01_triangle_100_lines"
path = "demos/ex/01_triangle_100_lines.rs"

[[bin]]
name = "ex_02_compute_100_mul"
path = "demos/ex/02_compute_100_mul.rs"

[[bin]]
name = "ex_03_textured_quad"
path = "demos/ex/03_textured_quad.rs"

[[bin]]
name = "ez_01_hello_triangle"
path = "demos/ez/01_hello_triangle.rs"

[[bin]]
name = "ez_02_compute_multiply"
path = "demos/ez/02_compute_multiply.rs"

[[bin]]
name = "ez_03_buffers_demo"
path = "demos/ez/03_buffers_demo.rs"

[[bin]]
name = "ez_04_splash_screen"
path = "demos/ez/04_splash_screen.rs"

[[bin]]
name = "ez_error_handling_demo"
path = "demos/ez/error_handling_demo.rs"

[dependencies.ash]
version = "0.38"

[dependencies.naga]
features = ["glsl-in", "spv-out"]
version = "22"

[dependencies.spirv-reflect]
version = "0.2"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

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

[package]
authors = ["Paul Burnett-Jones <paulburnettjones-wq@users.noreply.github.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["graphics", "rendering", "game-development"]
description = "A three-tiered Vulkan shader compilation and rendering framework built in pure Rust"
documentation = "https://docs.rs/shdrlib"
edition = "2021"
homepage = "https://github.com/paulburnettjones-wq/shdrlib"
include = ["src/**/*.rs", "demos/**/*.rs", "demos/**/*.md", "docs/**/*.md", "Cargo.toml", "readme.md", "LICENSE-MIT", "LICENSE-APACHE", "API_REFERENCE.md", "CHANGELOG.md", "CONTRIBUTING.md", "QUICKSTART.md"]
keywords = ["vulkan", "graphics", "shader", "rendering", "gamedev"]
license = "MIT OR Apache-2.0"
name = "shdrlib"
readme = "readme.md"
repository = "https://github.com/paulburnettjones-wq/shdrlib"
rust-version = "1.82"
version = "0.1.5"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]