Update glam 0.22, hexasphere 8.0, encase 0.4 (#6427)
# Objective - Update glam to 0.22, hexasphere to 8.0, encase to 0.4 ## Solution - Update glam to 0.22, hexasphere to 8.0, encase to 0.4 - ~~waiting on https://github.com/teoxoy/encase/pull/17 and https://github.com/OptimisticPeach/hexasphere/pull/13~~
This commit is contained in:
parent
944b311c67
commit
0aab699a84
@ -7,7 +7,7 @@ publish = false
|
|||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
glam = "0.21"
|
glam = "0.22"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
rand_chacha = "0.3"
|
rand_chacha = "0.3"
|
||||||
criterion = { version = "0.3", features = ["html_reports"] }
|
criterion = { version = "0.3", features = ["html_reports"] }
|
||||||
|
@ -13,4 +13,4 @@ proc-macro = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.9.0-dev" }
|
bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.9.0-dev" }
|
||||||
encase_derive_impl = "0.3.0"
|
encase_derive_impl = "0.4.0"
|
||||||
|
@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
|
|||||||
keywords = ["bevy"]
|
keywords = ["bevy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
glam = { version = "0.21", features = ["bytemuck"] }
|
glam = { version = "0.22", features = ["bytemuck"] }
|
||||||
serde = { version = "1", features = ["derive"], optional = true }
|
serde = { version = "1", features = ["derive"], optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -11,7 +11,7 @@ license = "Zlib AND (MIT OR Apache-2.0)"
|
|||||||
keywords = ["bevy", "3D", "graphics", "algorithm", "tangent"]
|
keywords = ["bevy", "3D", "graphics", "algorithm", "tangent"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
glam = "0.21"
|
glam = "0.22"
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "generate"
|
name = "generate"
|
||||||
|
@ -31,7 +31,7 @@ thiserror = "1.0"
|
|||||||
once_cell = "1.11"
|
once_cell = "1.11"
|
||||||
serde = "1"
|
serde = "1"
|
||||||
smallvec = { version = "1.6", features = ["serde", "union", "const_generics"], optional = true }
|
smallvec = { version = "1.6", features = ["serde", "union", "const_generics"], optional = true }
|
||||||
glam = { version = "0.21", features = ["serde"], optional = true }
|
glam = { version = "0.22", features = ["serde"], optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ron = "0.8.0"
|
ron = "0.8.0"
|
||||||
|
@ -237,11 +237,5 @@ impl_from_reflect_value!(Quat);
|
|||||||
impl_from_reflect_value!(DQuat);
|
impl_from_reflect_value!(DQuat);
|
||||||
|
|
||||||
impl_reflect_value!(EulerRot(Debug, Default));
|
impl_reflect_value!(EulerRot(Debug, Default));
|
||||||
|
impl_reflect_value!(BVec3A(Debug, Default));
|
||||||
// glam type aliases these to the non simd versions when there is no support (this breaks wasm builds for example)
|
impl_reflect_value!(BVec4A(Debug, Default));
|
||||||
// ideally it shouldn't do that and there's an issue on glam for this
|
|
||||||
// https://github.com/bitshifter/glam-rs/issues/306
|
|
||||||
#[cfg(any(target_feature = "sse2", target_feature = "simd128"))]
|
|
||||||
impl_reflect_value!(BVec3A(Debug, PartialEq, Default));
|
|
||||||
#[cfg(any(target_feature = "sse2", target_feature = "simd128"))]
|
|
||||||
impl_reflect_value!(BVec4A(Debug, PartialEq, Default));
|
|
||||||
|
@ -62,7 +62,7 @@ thiserror = "1.0"
|
|||||||
futures-lite = "1.4.0"
|
futures-lite = "1.4.0"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
hex = "0.4.2"
|
hex = "0.4.2"
|
||||||
hexasphere = "7.2"
|
hexasphere = "8.0"
|
||||||
parking_lot = "0.12.1"
|
parking_lot = "0.12.1"
|
||||||
regex = "1.5"
|
regex = "1.5"
|
||||||
ddsfile = { version = "0.5.0", optional = true }
|
ddsfile = { version = "0.5.0", optional = true }
|
||||||
@ -72,6 +72,6 @@ flate2 = { version = "1.0.22", optional = true }
|
|||||||
ruzstd = { version = "0.2.4", optional = true }
|
ruzstd = { version = "0.2.4", optional = true }
|
||||||
# For transcoding of UASTC/ETC1S universal formats, and for .basis file support
|
# For transcoding of UASTC/ETC1S universal formats, and for .basis file support
|
||||||
basis-universal = { version = "0.2.0", optional = true }
|
basis-universal = { version = "0.2.0", optional = true }
|
||||||
encase = { version = "0.3", features = ["glam"] }
|
encase = { version = "0.4", features = ["glam"] }
|
||||||
# For wgpu profiling using tracing. Use `RUST_LOG=info` to also capture the wgpu spans.
|
# For wgpu profiling using tracing. Use `RUST_LOG=info` to also capture the wgpu spans.
|
||||||
profiling = { version = "1", features = ["profile-with-tracing"], optional = true }
|
profiling = { version = "1", features = ["profile-with-tracing"], optional = true }
|
||||||
|
Loading…
Reference in New Issue
Block a user