Support Glam 0.25 type conversion
This commit is contained in:
parent
706caf52c3
commit
980dd68e68
|
@ -4,6 +4,9 @@ documented here.
|
||||||
|
|
||||||
This project adheres to [Semantic Versioning](https://semver.org/).
|
This project adheres to [Semantic Versioning](https://semver.org/).
|
||||||
|
|
||||||
|
## [0.32.4] (19 Feb 2023)
|
||||||
|
- Add the `glam-0.25` feature to enable conversion from/to types from `glam` v0.25.
|
||||||
|
|
||||||
## [0.32.3] (09 July 2023)
|
## [0.32.3] (09 July 2023)
|
||||||
|
|
||||||
### Modified
|
### Modified
|
||||||
|
|
|
@ -49,6 +49,7 @@ convert-glam021 = [ "glam021" ]
|
||||||
convert-glam022 = [ "glam022" ]
|
convert-glam022 = [ "glam022" ]
|
||||||
convert-glam023 = [ "glam023" ]
|
convert-glam023 = [ "glam023" ]
|
||||||
convert-glam024 = [ "glam024" ]
|
convert-glam024 = [ "glam024" ]
|
||||||
|
convert-glam025 = [ "glam025" ]
|
||||||
|
|
||||||
# Serialization
|
# Serialization
|
||||||
## To use serde in a #[no-std] environment, enable the
|
## To use serde in a #[no-std] environment, enable the
|
||||||
|
@ -104,6 +105,7 @@ glam021 = { package = "glam", version = "0.21", optional = true }
|
||||||
glam022 = { package = "glam", version = "0.22", optional = true }
|
glam022 = { package = "glam", version = "0.22", optional = true }
|
||||||
glam023 = { package = "glam", version = "0.23", optional = true }
|
glam023 = { package = "glam", version = "0.23", optional = true }
|
||||||
glam024 = { package = "glam", version = "0.24", optional = true }
|
glam024 = { package = "glam", version = "0.24", optional = true }
|
||||||
|
glam025 = { package = "glam", version = "0.25", optional = true }
|
||||||
cust_core = { version = "0.1", optional = true }
|
cust_core = { version = "0.1", optional = true }
|
||||||
rayon = { version = "1.6", optional = true }
|
rayon = { version = "1.6", optional = true }
|
||||||
|
|
||||||
|
|
|
@ -20,3 +20,5 @@ mod v022;
|
||||||
mod v023;
|
mod v023;
|
||||||
#[cfg(feature = "glam024")]
|
#[cfg(feature = "glam024")]
|
||||||
mod v024;
|
mod v024;
|
||||||
|
#[cfg(feature = "glam025")]
|
||||||
|
mod v025;
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
#[path = "../common/glam_isometry.rs"]
|
||||||
|
mod glam_isometry;
|
||||||
|
#[path = "../common/glam_matrix.rs"]
|
||||||
|
mod glam_matrix;
|
||||||
|
#[path = "../common/glam_point.rs"]
|
||||||
|
mod glam_point;
|
||||||
|
#[path = "../common/glam_quaternion.rs"]
|
||||||
|
mod glam_quaternion;
|
||||||
|
#[path = "../common/glam_rotation.rs"]
|
||||||
|
mod glam_rotation;
|
||||||
|
#[path = "../common/glam_similarity.rs"]
|
||||||
|
mod glam_similarity;
|
||||||
|
#[path = "../common/glam_translation.rs"]
|
||||||
|
mod glam_translation;
|
||||||
|
#[path = "../common/glam_unit_complex.rs"]
|
||||||
|
mod glam_unit_complex;
|
||||||
|
|
||||||
|
pub(self) use glam025 as glam;
|
Loading…
Reference in New Issue