rust-gpu/crates/spirv-std/macros/Cargo.toml

21 lines
480 B
TOML
Raw Normal View History

[package]
name = "spirv-std-macros"
2021-03-05 08:27:07 +00:00
description = "Macros for spirv-std"
2022-11-22 14:28:53 +00:00
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
2021-01-25 10:39:47 +00:00
[dependencies]
2022-11-22 14:28:53 +00:00
spirv-std-types.workspace = true
2021-03-16 08:59:08 +00:00
proc-macro2 = "1.0.24"
2021-01-25 10:39:47 +00:00
quote = "1.0.8"
syn = { version = "1.0.85", features = ["full", "visit-mut"] }