vulkano/vulkano-shaders/Cargo.toml

29 lines
824 B
TOML
Raw Normal View History

2016-01-31 09:13:01 +00:00
[package]
name = "vulkano-shaders"
version = "0.33.0"
edition = "2021"
2023-06-28 20:11:56 +00:00
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
2017-08-05 09:06:13 +00:00
repository = "https://github.com/vulkano-rs/vulkano"
description = "Shaders rust code generation macro"
license = "MIT OR Apache-2.0"
2018-11-08 02:19:42 +00:00
documentation = "https://docs.rs/vulkano"
homepage = "https://vulkano.rs"
keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
2017-01-31 08:59:07 +00:00
categories = ["rendering::graphics-api"]
[lib]
proc-macro = true
2016-02-25 07:52:22 +00:00
[dependencies]
ahash = "0.8"
2022-01-18 12:49:24 +00:00
heck = "0.4"
proc-macro2 = "1.0"
2021-02-05 19:35:24 +00:00
quote = "1.0"
shaderc = "0.8"
2023-06-28 20:11:56 +00:00
syn = { version = "2.0", features = ["full", "extra-traits"] }
vulkano = { version = "0.33.0", path = "../vulkano", default-features = false }
[features]
shaderc-build-from-source = ["shaderc/build-from-source"]
shaderc-debug = []