Skip to content

Commit cbbf8ac

Browse files
committed
Update glam to 0.23 (#7883)
# Objective - Update `glam` to the latest version. ## Solution - Update `glam` to version `0.23`. Since the breaking change in `glam` only affects the `scalar-math` feature, this should cause no issues.
1 parent 2ea0061 commit cbbf8ac

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

benches/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish = false
77
license = "MIT OR Apache-2.0"
88

99
[dev-dependencies]
10-
glam = "0.22"
10+
glam = "0.23"
1111
rand = "0.8"
1212
rand_chacha = "0.3"
1313
criterion = { version = "0.3", features = ["html_reports"] }

crates/bevy_encase_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ proc-macro = true
1313

1414
[dependencies]
1515
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.9.0" }
16-
encase_derive_impl = "0.4.0"
16+
encase_derive_impl = "0.5.0"

crates/bevy_math/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
99
keywords = ["bevy"]
1010

1111
[dependencies]
12-
glam = { version = "0.22", features = ["bytemuck"] }
12+
glam = { version = "0.23", features = ["bytemuck"] }
1313
serde = { version = "1", features = ["derive"], optional = true }
1414

1515
[features]

crates/bevy_mikktspace/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "Zlib AND (MIT OR Apache-2.0)"
1111
keywords = ["bevy", "3D", "graphics", "algorithm", "tangent"]
1212

1313
[dependencies]
14-
glam = "0.22"
14+
glam = "0.23"
1515

1616
[[example]]
1717
name = "generate"

crates/bevy_reflect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ thiserror = "1.0"
3131
once_cell = "1.11"
3232
serde = "1"
3333
smallvec = { version = "1.6", features = ["serde", "union", "const_generics"], optional = true }
34-
glam = { version = "0.22", features = ["serde"], optional = true }
34+
glam = { version = "0.23", features = ["serde"], optional = true }
3535

3636
[dev-dependencies]
3737
ron = "0.8.0"

crates/bevy_render/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ thread_local = "1.1"
6464
thiserror = "1.0"
6565
futures-lite = "1.4.0"
6666
anyhow = "1.0"
67-
hexasphere = "8.0"
67+
hexasphere = "8.1"
6868
parking_lot = "0.12.1"
6969
regex = "1.5"
7070
ddsfile = { version = "0.5.0", optional = true }
@@ -74,7 +74,7 @@ flate2 = { version = "1.0.22", optional = true }
7474
ruzstd = { version = "0.2.4", optional = true }
7575
# For transcoding of UASTC/ETC1S universal formats, and for .basis file support
7676
basis-universal = { version = "0.2.0", optional = true }
77-
encase = { version = "0.4", features = ["glam"] }
77+
encase = { version = "0.5", features = ["glam"] }
7878
# For wgpu profiling using tracing. Use `RUST_LOG=info` to also capture the wgpu spans.
7979
profiling = { version = "1", features = ["profile-with-tracing"], optional = true }
8080
async-channel = "1.8"

0 commit comments

Comments
 (0)