mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 06:45:23 +00:00
494a0c30c8
* vulkano_shaders_derive exposes a proc_macro instead of a proc_macro_derive * move vulkano_shader out of vulkano_shaders_derive and deprecate vulkano_shaders_derive * Update documentation * Move vulkano_shader! to root of mod, so it works with rust 1.30
22 lines
559 B
TOML
22 lines
559 B
TOML
[package]
|
|
name = "vulkano-shaders"
|
|
version = "0.10.0"
|
|
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 = "http://tomaka.github.io/vulkano/vulkano/index.html"
|
|
categories = ["rendering::graphics-api"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
shaderc = "0.3"
|
|
syn = "0.15"
|
|
quote = "0.6"
|
|
proc-macro2 = "0.4"
|
|
|
|
[dev-dependencies]
|
|
vulkano = { version = "0.10", path = "../vulkano" }
|