Skip to content

Commit de3c70a

Browse files
targrubaecsocket
andauthored
Update glam to 0.29, encase to 0.10. (#15249)
# Objective Updating ``glam`` to 0.29, ``encase`` to 0.10. ## Solution Update the necessary ``Cargo.toml`` files. ## Testing Ran ``cargo run -p ci`` on Windows; no issues came up. --------- Co-authored-by: aecsocket <[email protected]>
1 parent 89e98b2 commit de3c70a

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

benches/Cargo.toml

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

88
[dev-dependencies]
9-
glam = "0.28"
9+
glam = "0.29"
1010
rand = "0.8"
1111
rand_chacha = "0.3"
1212
criterion = { version = "0.3", features = ["html_reports"] }

crates/bevy_color/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bytemuck = { version = "1", features = ["derive"] }
1818
serde = { version = "1.0", features = ["derive"], optional = true }
1919
thiserror = "1.0"
2020
wgpu-types = { version = "22", default-features = false, optional = true }
21-
encase = { version = "0.9", default-features = false }
21+
encase = { version = "0.10", default-features = false }
2222

2323
[features]
2424
default = ["bevy_reflect"]

crates/bevy_encase_derive/Cargo.toml

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

1414
[dependencies]
1515
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.15.0-dev" }
16-
encase_derive_impl = "0.8"
16+
encase_derive_impl = "0.10"
1717

1818
[lints]
1919
workspace = true

crates/bevy_math/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["bevy"]
1010
rust-version = "1.68.2"
1111

1212
[dependencies]
13-
glam = { version = "0.28", features = ["bytemuck"] }
13+
glam = { version = "0.29", features = ["bytemuck"] }
1414
thiserror = "1.0"
1515
itertools = "0.13.0"
1616
serde = { version = "1", features = ["derive"], optional = true }
@@ -33,7 +33,7 @@ rand = "0.8"
3333
rand_chacha = "0.3"
3434
# Enable the approx feature when testing.
3535
bevy_math = { path = ".", version = "0.15.0-dev", features = ["approx"] }
36-
glam = { version = "0.28", features = ["approx"] }
36+
glam = { version = "0.29", features = ["approx"] }
3737

3838
[features]
3939
default = ["rand", "bevy_reflect"]

crates/bevy_mikktspace/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ keywords = ["bevy", "3D", "graphics", "algorithm", "tangent"]
1616
rust-version = "1.76.0"
1717

1818
[dependencies]
19-
glam = "0.28"
19+
glam = "0.29"
2020

2121
[[example]]
2222
name = "generate"

crates/bevy_reflect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ thiserror = "1.0"
4242
serde = "1"
4343
smallvec = { version = "1.11", optional = true }
4444

45-
glam = { version = "0.28", features = ["serde"], optional = true }
45+
glam = { version = "0.29", features = ["serde"], optional = true }
4646
petgraph = { version = "0.6", features = ["serde-1"], optional = true }
4747
smol_str = { version = "0.2.0", features = ["serde"], optional = true }
4848
uuid = { version = "1.0", optional = true, features = ["v4", "serde"] }

crates/bevy_render/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ bytemuck = { version = "1.5", features = ["derive", "must_cast"] }
8787
downcast-rs = "1.2.0"
8888
thiserror = "1.0"
8989
futures-lite = "2.0.1"
90-
hexasphere = "14.0"
90+
hexasphere = "15.0"
9191
ddsfile = { version = "0.5.2", optional = true }
9292
ktx2 = { version = "0.3.0", optional = true }
9393
# For ktx2 supercompression
9494
flate2 = { version = "1.0.22", optional = true }
9595
ruzstd = { version = "0.7.0", optional = true }
9696
# For transcoding of UASTC/ETC1S universal formats, and for .basis file support
9797
basis-universal = { version = "0.3.0", optional = true }
98-
encase = { version = "0.9", features = ["glam"] }
98+
encase = { version = "0.10", features = ["glam"] }
9999
# For wgpu profiling using tracing. Use `RUST_LOG=info` to also capture the wgpu spans.
100100
profiling = { version = "1", features = [
101101
"profile-with-tracing",

0 commit comments

Comments
 (0)