mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 06:45:23 +00:00
1e9128795f
* Use workspace dependencies * Update CI workflow to account for the two workspaces * Make the tables in the root workspace a bit nicer to look at * Use workspace package version * Remove workspace package version * Make winit a workspace dependency as well
30 lines
920 B
TOML
30 lines
920 B
TOML
[package]
|
|
name = "vulkano-shaders"
|
|
version = "0.34.0"
|
|
edition = "2021"
|
|
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>", "The vulkano contributors"]
|
|
repository = "https://github.com/vulkano-rs/vulkano/tree/master/vulkano-shaders"
|
|
description = "Macro for generating Rust code from shaders"
|
|
license = "MIT OR Apache-2.0"
|
|
documentation = "https://docs.rs/vulkano-shaders"
|
|
homepage = "https://vulkano.rs"
|
|
keywords = ["vulkan", "bindings", "graphics", "gpu", "rendering"]
|
|
categories = ["rendering::graphics-api"]
|
|
readme = "../README.md"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
ahash = { workspace = true }
|
|
heck = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
quote = { workspace = true }
|
|
shaderc = { workspace = true }
|
|
syn = { workspace = true, features = ["full", "extra-traits"] }
|
|
vulkano = { workspace = true }
|
|
|
|
[features]
|
|
shaderc-build-from-source = ["shaderc/build-from-source"]
|
|
shaderc-debug = []
|