mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-26 16:54:08 +00:00
353fa96af6
* remove saturate from spirv_std MathExt and rename pow to powf * update to latest glam * update glam again and add `std` feature to `spirv-std` to support cpu runner * re-remove spirv-tools-sys submodule * fixup! Merge branch 'main' into powf-saturate * Use libm instead of MathExt * Fix lint for unused import when compiling with std Co-authored-by: khyperia <github@khyperia.com>
17 lines
531 B
TOML
17 lines
531 B
TOML
[package]
|
|
name = "spirv-std"
|
|
version = "0.1.0"
|
|
authors = ["Embark <opensource@embark-studios.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/EmbarkStudios/rust-gpu"
|
|
|
|
[dependencies]
|
|
# https://github.com/bitshifter/glam-rs/pull/85
|
|
glam = { git = "https://github.com/EmbarkStudios/glam-rs", rev = "ea8fe2766ca27f481656d3507cc129537e262182", default-features = false, features = ["libm"] }
|
|
num-traits = { version = "0.2.14", default-features = false }
|
|
|
|
[features]
|
|
default = []
|
|
std = ["glam/std"]
|