2016-01-31 09:13:01 +00:00
|
|
|
[package]
|
2016-02-06 10:45:09 +00:00
|
|
|
name = "vulkano-shaders"
|
2021-06-20 06:35:03 +00:00
|
|
|
version = "0.24.0"
|
2018-12-11 07:26:04 +00:00
|
|
|
edition = "2018"
|
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]
|
2021-06-28 08:57:30 +00:00
|
|
|
num-traits = "0.2"
|
2019-10-24 11:09:08 +00:00
|
|
|
proc-macro2 = "1.0"
|
2021-02-05 19:35:24 +00:00
|
|
|
quote = "1.0"
|
|
|
|
shaderc = "0.7"
|
2021-06-28 08:57:30 +00:00
|
|
|
spirv_headers = "1.5"
|
|
|
|
syn = { version="1.0", features=["full", "extra-traits"] }
|
2018-10-26 00:15:33 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-06-28 08:57:30 +00:00
|
|
|
vulkano = { version="0.24.0", path="../vulkano" }
|
2019-08-12 09:54:15 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
shaderc-build-from-source = ["shaderc/build-from-source"]
|