Vendor dependencies for 0.3.0 release

This commit is contained in:
2025-09-27 10:29:08 -05:00
parent 0c8d39d483
commit 82ab7f317b
26803 changed files with 16134934 additions and 0 deletions

31
vendor/glam/build_and_test_features.sh vendored Executable file
View File

@@ -0,0 +1,31 @@
#!/bin/bash
set -ex
# Set of features to build & test.
FEATURE_SETS=(
# std
"std"
"std approx bytemuck mint rand serde debug-glam-assert"
"std scalar-math approx bytemuck mint rand serde debug-glam-assert"
"std cuda"
"std scalar-math cuda"
"std libm"
"std scalar-math libm"
# no_std
"libm"
"libm scalar-math approx bytemuck mint rand serde debug-glam-assert"
)
rustc --version
for features in "${FEATURE_SETS[@]}"
do
:
cargo build --tests --no-default-features --features="$features"
cargo test --no-default-features --features="$features"
done
RUSTFLAGS='-C target-feature=+fma' cargo check
cargo check -p glam-no_std