mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 06:45:23 +00:00
d5fd3d3f0b
* Convert Vulkano-shaders to use spirv_headers crate * Fix issue after merge
30 lines
802 B
TOML
30 lines
802 B
TOML
[package]
|
|
name = "vulkano-shaders"
|
|
version = "0.24.0"
|
|
edition = "2018"
|
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
|
repository = "https://github.com/vulkano-rs/vulkano"
|
|
description = "Shaders rust code generation macro"
|
|
license = "MIT/Apache-2.0"
|
|
documentation = "https://docs.rs/vulkano"
|
|
homepage = "https://vulkano.rs"
|
|
keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
|
|
categories = ["rendering::graphics-api"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
num-traits = "0.2"
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
shaderc = "0.7"
|
|
spirv_headers = "1.5"
|
|
syn = { version="1.0", features=["full", "extra-traits"] }
|
|
|
|
[dev-dependencies]
|
|
vulkano = { version="0.24.0", path="../vulkano" }
|
|
|
|
[features]
|
|
shaderc-build-from-source = ["shaderc/build-from-source"]
|