mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-21 22:34:43 +00:00
31 lines
821 B
TOML
31 lines
821 B
TOML
[package]
|
|
name = "vulkano-shaders"
|
|
version = "0.32.0"
|
|
edition = "2021"
|
|
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]
|
|
ahash = "0.8"
|
|
heck = "0.4"
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
shaderc = "0.8"
|
|
syn = { version = "1.0", features = ["full", "extra-traits"] }
|
|
vulkano = { version = "0.32.0", path = "../vulkano" }
|
|
|
|
[features]
|
|
cgmath = []
|
|
nalgebra = []
|
|
shaderc-build-from-source = ["shaderc/build-from-source"]
|
|
shaderc-debug = []
|