2016-01-31 09:13:01 +00:00
|
|
|
[package]
|
2016-02-06 10:45:09 +00:00
|
|
|
name = "vulkano-shaders"
|
2022-09-18 10:46:53 +00:00
|
|
|
version = "0.31.0"
|
2021-12-16 08:46:44 +00:00
|
|
|
edition = "2021"
|
2017-08-05 09:06:13 +00:00
|
|
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
|
|
|
repository = "https://github.com/vulkano-rs/vulkano"
|
2018-10-26 00:15:33 +00:00
|
|
|
description = "Shaders rust code generation macro"
|
2016-04-30 10:08:48 +00:00
|
|
|
license = "MIT/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"]
|
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-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"
|
2021-09-04 04:21:15 +00:00
|
|
|
syn = { version = "1.0", features = ["full", "extra-traits"] }
|
2022-09-18 10:46:53 +00:00
|
|
|
vulkano = { version = "0.31.0", path = "../vulkano" }
|
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 = []
|