mirror of
https://github.com/EmbarkStudios/rust-gpu.git
synced 2024-11-21 22:34:34 +00:00
spirv-std: only enable glam
&num-traits
's libm
features on SPIR-V targets. (#1122)
This commit is contained in:
parent
8678d58d61
commit
9d8095177e
@ -39,6 +39,10 @@ spirv-tools = { version = "0.10", default-features = false }
|
||||
rustc_codegen_spirv = { path = "./crates/rustc_codegen_spirv", version = "=0.9.0", default-features = false }
|
||||
rustc_codegen_spirv-types = { path = "./crates/rustc_codegen_spirv-types", version = "=0.9.0" }
|
||||
|
||||
# External dependencies that need to be mentioned more than once.
|
||||
num-traits = { version = "0.2.15", default-features = false }
|
||||
glam = { version = ">=0.22, <=0.24", default-features = false }
|
||||
|
||||
# Enable incremental by default in release mode.
|
||||
[profile.release]
|
||||
incremental = true
|
||||
|
@ -42,7 +42,7 @@ syn = { version = "1", features = ["extra-traits", "full"] }
|
||||
# in order to avoid multiple separate instances of `rustc_codegen_spirv`.
|
||||
hashbrown = "0.11"
|
||||
libc = { version = "0.2", features = ["align", "extra_traits"] }
|
||||
num-traits = { version = "0.2", features = ["libm"] }
|
||||
num-traits = { workspace = true, default-features = true }
|
||||
once_cell = "1"
|
||||
regex = { version = "1", features = ["perf"] }
|
||||
|
||||
|
@ -11,8 +11,14 @@ repository.workspace = true
|
||||
spirv-std-types.workspace = true
|
||||
spirv-std-macros.workspace = true
|
||||
bitflags = "1.2.1"
|
||||
num-traits = { version = "0.2.15", default-features = false, features = ["libm"] }
|
||||
glam = { version = ">=0.22, <=0.24", default-features = false, features = ["libm"] }
|
||||
|
||||
[target.'cfg(target_arch = "spirv")'.dependencies]
|
||||
num-traits = { workspace = true, features = ["libm"] }
|
||||
glam = { workspace = true, features = ["libm"] }
|
||||
|
||||
[target.'cfg(not(target_arch = "spirv"))'.dependencies]
|
||||
num-traits = { workspace = true, default-features = true }
|
||||
glam = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
Loading…
Reference in New Issue
Block a user