mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-22 14:56:27 +00:00
19 lines
521 B
TOML
19 lines
521 B
TOML
[package]
|
|
name = "spirv-std"
|
|
description = "Standard functions and types for SPIR-V"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
spirv-std-types.workspace = true
|
|
spirv-std-macros.workspace = true
|
|
bitflags = "1.2.1"
|
|
num-traits = { version = "0.2.14", default-features = false, features = ["libm"] }
|
|
glam = { version = "0.22", default-features = false, features = ["libm"], optional = true }
|
|
|
|
[features]
|
|
default = ["glam"]
|