mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 06:45:23 +00:00
d779829cbd
Use syn to construct ast instead of raw strings Move spirv searching methods from lib.rs into its own module Improve formatting
23 lines
627 B
TOML
23 lines
627 B
TOML
[package]
|
|
name = "vulkano-shader-derive"
|
|
version = "0.10.0"
|
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
|
repository = "https://github.com/vulkano-rs/vulkano"
|
|
description = "Safe wrapper for the Vulkan graphics API"
|
|
license = "MIT/Apache-2.0"
|
|
documentation = "https://docs.rs/vulkano"
|
|
categories = ["rendering::graphics-api"]
|
|
|
|
[lib]
|
|
name = "vulkano_shader_derive"
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = "0.15"
|
|
quote = "0.6"
|
|
proc-macro2 = "0.4"
|
|
vulkano-shaders = { version = "0.10", path = "../vulkano-shaders" }
|
|
|
|
[dev-dependencies]
|
|
vulkano = { version = "0.10", path = "../vulkano" }
|