2016-01-31 09:13:01 +00:00
|
|
|
[package]
|
2016-02-06 10:45:09 +00:00
|
|
|
name = "vulkano-shaders"
|
2023-10-24 16:54:46 +00:00
|
|
|
version = "0.34.0"
|
2021-12-16 08:46:44 +00:00
|
|
|
edition = "2021"
|
2023-06-28 20:11:56 +00:00
|
|
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
2023-10-29 17:54:11 +00:00
|
|
|
repository = "https://github.com/vulkano-rs/vulkano/tree/master/vulkano-shaders"
|
|
|
|
description = "Macro for generating Rust code from shaders"
|
2023-08-18 11:36:49 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-10-29 17:54:11 +00:00
|
|
|
documentation = "https://docs.rs/vulkano-shaders"
|
2018-11-08 02:19:42 +00:00
|
|
|
homepage = "https://vulkano.rs"
|
|
|
|
keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
|
2017-01-31 08:59:07 +00:00
|
|
|
categories = ["rendering::graphics-api"]
|
2023-10-29 17:54:11 +00:00
|
|
|
readme = "../README.md"
|
2016-01-31 12:18:58 +00:00
|
|
|
|
2018-10-26 00:15:33 +00:00
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2016-02-25 07:52:22 +00:00
|
|
|
[dependencies]
|
2022-10-04 08:04:52 +00:00
|
|
|
ahash = "0.8"
|
2022-01-18 12:49:24 +00:00
|
|
|
heck = "0.4"
|
2019-10-24 11:09:08 +00:00
|
|
|
proc-macro2 = "1.0"
|
2021-02-05 19:35:24 +00:00
|
|
|
quote = "1.0"
|
2022-05-29 17:27:47 +00:00
|
|
|
shaderc = "0.8"
|
2023-06-28 20:11:56 +00:00
|
|
|
syn = { version = "2.0", features = ["full", "extra-traits"] }
|
2023-10-24 16:54:46 +00:00
|
|
|
vulkano = { version = "0.34.0", path = "../vulkano", default-features = false }
|
2019-08-12 09:54:15 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
shaderc-build-from-source = ["shaderc/build-from-source"]
|
2021-11-24 13:51:55 +00:00
|
|
|
shaderc-debug = []
|