From 7b7feaa5d6f8cb0bd842e750729662a344325f7b Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Thu, 2 Mar 2023 09:35:17 +0100 Subject: [PATCH] Remove glam Unfortunately SIMD types are not FFI safe, see https://github.com/rust-lang/rust/issues/53346 --- physx-sys/Cargo.toml | 3 --- 1 file changed, 3 deletions(-) diff --git a/physx-sys/Cargo.toml b/physx-sys/Cargo.toml index 74b44064..ae98db56 100644 --- a/physx-sys/Cargo.toml +++ b/physx-sys/Cargo.toml @@ -50,9 +50,6 @@ debug-structs = [] [dependencies] # The PhysX API exposes several enums used as flags bitflags = "1.3" -# Glam's vector types match the alignment, layout, and size of the core scalar -# types present in Physx's public API -glam = "0.23" [build-dependencies] cc = { version = "1.0", features = ["parallel"] }