Skip to content

Commit 897b3b0

Browse files
committed
Enforce harder
1 parent d2cfa04 commit 897b3b0

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/spirv-std/Cargo.toml

+9-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,15 @@ repository.workspace = true
1111
spirv-std-types.workspace = true
1212
spirv-std-macros.workspace = true
1313
bitflags = "1.2.1"
14-
num-traits = { version = "0.2.15", default-features = false, features = ["libm"] }
15-
glam = { version = ">=0.22, <=0.24", default-features = false, features = ["libm"] }
14+
num-traits = { version = "0.2.15", default-features = false, features = [
15+
"libm",
16+
] }
17+
glam = { version = ">=0.22, <=0.24", default-features = false, features = [
18+
"libm",
19+
] }
20+
21+
# Avoid https://github.com/rust-lang/rust/issues/113152
22+
proc-macro2 = ">=1.0.60"
1623

1724
[features]
1825
default = []

0 commit comments

Comments
 (0)