Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ std = [
"glam028?/std",
"glam029?/std",
"glam030?/std",
"glam031?/std",
"glam032?/std",
]
sparse = []
debug = ["approx/num-complex", "rand"]
Expand All @@ -71,6 +73,8 @@ libm = [
"glam028?/libm",
"glam029?/libm",
"glam030?/libm",
"glam031?/libm",
"glam032?/libm",
]
libm-force = ["simba/libm_force"]
macros = ["nalgebra-macros"]
Expand All @@ -94,6 +98,8 @@ convert-glam027 = ["glam027"]
convert-glam028 = ["glam028"]
convert-glam029 = ["glam029"]
convert-glam030 = ["glam030"]
convert-glam031 = ["glam031"]
convert-glam032 = ["glam032"]

# Serialization
## To use serde in a #[no-std] environment, enable the
Expand Down Expand Up @@ -155,6 +161,8 @@ glam027 = { package = "glam", version = "0.27", optional = true, default-feature
glam028 = { package = "glam", version = "0.28", optional = true, default-features = false }
glam029 = { package = "glam", version = "0.29", optional = true, default-features = false }
glam030 = { package = "glam", version = "0.30", optional = true, default-features = false }
glam031 = { package = "glam", version = "0.31", optional = true, default-features = false }
glam032 = { package = "glam", version = "0.32", optional = true, default-features = false }
rayon = { version = "1.6", optional = true }
defmt = { version = "1.0.1", optional = true }
encase = { version = "0.12", optional = true }
Expand Down
4 changes: 4 additions & 0 deletions src/third_party/glam/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@ mod v028;
mod v029;
#[cfg(feature = "glam030")]
mod v030;
#[cfg(feature = "glam031")]
mod v031;
#[cfg(feature = "glam032")]
mod v032;
18 changes: 18 additions & 0 deletions src/third_party/glam/v031/mod.rs
Original file line number Diff line number Diff line change
@@ -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 glam031 as glam;
18 changes: 18 additions & 0 deletions src/third_party/glam/v032/mod.rs
Original file line number Diff line number Diff line change
@@ -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 glam032 as glam;
Loading