Update to latest encase
This commit is contained in:
parent
fe48606f06
commit
6b8bb28f07
@ -29,7 +29,7 @@ bevy_platform = { path = "../crates/bevy_platform", default-features = false, fe
|
||||
] }
|
||||
|
||||
# Other crates
|
||||
glam = { version = "0.30" }
|
||||
glam = { version = "0.30.1" }
|
||||
rand = "0.9"
|
||||
rand_chacha = "0.9"
|
||||
nonmax = { version = "0.5", default-features = false }
|
||||
|
||||
@ -21,7 +21,7 @@ serde = { version = "1.0", features = [
|
||||
thiserror = { version = "2", default-features = false }
|
||||
derive_more = { version = "1", default-features = false, features = ["from"] }
|
||||
wgpu-types = { version = "24", default-features = false, optional = true }
|
||||
encase = { git = "https://github.com/waywardmonkeys/encase/", branch = "update-deps", default-features = false, optional = true }
|
||||
encase = { version = "0.11", default-features = false, optional = true }
|
||||
|
||||
[features]
|
||||
default = ["std", "bevy_reflect", "encase"]
|
||||
|
||||
@ -10,7 +10,7 @@ keywords = ["bevy"]
|
||||
rust-version = "1.85.0"
|
||||
|
||||
[dependencies]
|
||||
glam = { version = "0.30", default-features = false, features = ["bytemuck"] }
|
||||
glam = { version = "0.30.1", default-features = false, features = ["bytemuck"] }
|
||||
thiserror = { version = "2", default-features = false }
|
||||
derive_more = { version = "1", default-features = false, features = [
|
||||
"from",
|
||||
@ -37,7 +37,10 @@ rand = "0.9"
|
||||
rand_chacha = "0.9"
|
||||
# Enable the approx feature when testing.
|
||||
bevy_math = { path = ".", default-features = false, features = ["approx"] }
|
||||
glam = { version = "0.30", default-features = false, features = ["approx"] }
|
||||
glam = { version = "0.30.1", default-features = false, features = ["approx"] }
|
||||
|
||||
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
||||
getrandom = { version = "0.3", features = ["wasm_js"] }
|
||||
|
||||
[features]
|
||||
default = ["std", "rand", "curve"]
|
||||
|
||||
@ -22,7 +22,7 @@ std = ["glam/std"]
|
||||
libm = ["glam/libm", "dep:libm"]
|
||||
|
||||
[dependencies]
|
||||
glam = { version = "0.30", default-features = false }
|
||||
glam = { version = "0.30.1", default-features = false }
|
||||
libm = { version = "0.2", default-features = false, optional = true }
|
||||
|
||||
[[example]]
|
||||
|
||||
@ -103,7 +103,7 @@ derive_more = { version = "1", default-features = false, features = ["from"] }
|
||||
serde = { version = "1", default-features = false, features = ["alloc"] }
|
||||
assert_type_match = "0.1.1"
|
||||
smallvec = { version = "1.11", default-features = false, optional = true }
|
||||
glam = { version = "0.30", default-features = false, features = [
|
||||
glam = { version = "0.30.1", default-features = false, features = [
|
||||
"serde",
|
||||
], optional = true }
|
||||
petgraph = { version = "0.7", features = ["serde-1"], optional = true }
|
||||
|
||||
@ -98,7 +98,7 @@ thiserror = { version = "2", default-features = false }
|
||||
derive_more = { version = "1", default-features = false, features = ["from"] }
|
||||
futures-lite = "2.0.1"
|
||||
ktx2 = { version = "0.4.0", optional = true }
|
||||
encase = { git = "https://github.com/waywardmonkeys/encase/", branch = "update-deps", features = ["glam"] }
|
||||
encase = { version = "0.11", features = ["glam"] }
|
||||
# For wgpu profiling using tracing. Use `RUST_LOG=info` to also capture the wgpu spans.
|
||||
profiling = { version = "1", features = [
|
||||
"profile-with-tracing",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user