2020-12-14 09:50:45 +00:00
|
|
|
[package]
|
2020-12-15 15:16:57 +00:00
|
|
|
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
|
2020-12-14 09:50:45 +00:00
|
|
|
|
2024-09-10 15:48:17 +00:00
|
|
|
[lints.rust]
|
|
|
|
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(target_arch, values("spirv"))'] }
|
|
|
|
|
2020-12-14 09:50:45 +00:00
|
|
|
[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"
|
2023-04-26 06:48:08 +00:00
|
|
|
syn = { version = "1.0.85", features = ["full", "visit-mut"] }
|