Skip to content

Commit 6b8bb28

Browse files
committed
Update to latest encase
1 parent fe48606 commit 6b8bb28

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

benches/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ bevy_platform = { path = "../crates/bevy_platform", default-features = false, fe
2929
] }
3030

3131
# Other crates
32-
glam = { version = "0.30" }
32+
glam = { version = "0.30.1" }
3333
rand = "0.9"
3434
rand_chacha = "0.9"
3535
nonmax = { version = "0.5", default-features = false }

crates/bevy_color/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ serde = { version = "1.0", features = [
2121
thiserror = { version = "2", default-features = false }
2222
derive_more = { version = "1", default-features = false, features = ["from"] }
2323
wgpu-types = { version = "24", default-features = false, optional = true }
24-
encase = { git = "https://github.com/waywardmonkeys/encase/", branch = "update-deps", default-features = false, optional = true }
24+
encase = { version = "0.11", default-features = false, optional = true }
2525

2626
[features]
2727
default = ["std", "bevy_reflect", "encase"]

crates/bevy_math/Cargo.toml

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

1212
[dependencies]
13-
glam = { version = "0.30", default-features = false, features = ["bytemuck"] }
13+
glam = { version = "0.30.1", default-features = false, features = ["bytemuck"] }
1414
thiserror = { version = "2", default-features = false }
1515
derive_more = { version = "1", default-features = false, features = [
1616
"from",
@@ -37,7 +37,10 @@ rand = "0.9"
3737
rand_chacha = "0.9"
3838
# Enable the approx feature when testing.
3939
bevy_math = { path = ".", default-features = false, features = ["approx"] }
40-
glam = { version = "0.30", default-features = false, features = ["approx"] }
40+
glam = { version = "0.30.1", default-features = false, features = ["approx"] }
41+
42+
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
43+
getrandom = { version = "0.3", features = ["wasm_js"] }
4144

4245
[features]
4346
default = ["std", "rand", "curve"]

crates/bevy_mikktspace/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ std = ["glam/std"]
2222
libm = ["glam/libm", "dep:libm"]
2323

2424
[dependencies]
25-
glam = { version = "0.30", default-features = false }
25+
glam = { version = "0.30.1", default-features = false }
2626
libm = { version = "0.2", default-features = false, optional = true }
2727

2828
[[example]]

crates/bevy_reflect/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ derive_more = { version = "1", default-features = false, features = ["from"] }
103103
serde = { version = "1", default-features = false, features = ["alloc"] }
104104
assert_type_match = "0.1.1"
105105
smallvec = { version = "1.11", default-features = false, optional = true }
106-
glam = { version = "0.30", default-features = false, features = [
106+
glam = { version = "0.30.1", default-features = false, features = [
107107
"serde",
108108
], optional = true }
109109
petgraph = { version = "0.7", features = ["serde-1"], optional = true }

crates/bevy_render/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ thiserror = { version = "2", default-features = false }
9898
derive_more = { version = "1", default-features = false, features = ["from"] }
9999
futures-lite = "2.0.1"
100100
ktx2 = { version = "0.4.0", optional = true }
101-
encase = { git = "https://github.com/waywardmonkeys/encase/", branch = "update-deps", features = ["glam"] }
101+
encase = { version = "0.11", features = ["glam"] }
102102
# For wgpu profiling using tracing. Use `RUST_LOG=info` to also capture the wgpu spans.
103103
profiling = { version = "1", features = [
104104
"profile-with-tracing",

0 commit comments

Comments
 (0)