mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-21 22:34:34 +00:00
20f1d603e4
* bump glam to 0.29 * fix cargo deny * upgrade wgpu * fix cfg-check lints
21 lines
480 B
TOML
21 lines
480 B
TOML
[package]
|
|
name = "spirv-std-macros"
|
|
description = "Macros for spirv-std"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(target_arch, values("spirv"))'] }
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
spirv-std-types.workspace = true
|
|
proc-macro2 = "1.0.24"
|
|
quote = "1.0.8"
|
|
syn = { version = "1.0.85", features = ["full", "visit-mut"] }
|