rust-gpu/crates/spirv-std/macros/Cargo.toml
Gray Olson 20f1d603e4
Fix cfg-check lint errors, update glam to 0.29, wgpu to 22.1 (#1157)
* bump glam to 0.29

* fix cargo deny

* upgrade wgpu

* fix cfg-check lints
2024-09-10 17:48:17 +02:00

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"] }