diff options
| author | Sébastien Crozet <developer@crozet.re> | 2024-06-23 22:57:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-23 22:57:51 +0200 |
| commit | 3004a7d38da447e307e11d86528047bdb724c318 (patch) | |
| tree | c16924c62b12523525d95711e9773a6ba96e5271 /crates/rapier3d | |
| parent | 3e8650f3a761422f0926300dc98f9870e5d92776 (diff) | |
| download | rapier-3004a7d38da447e307e11d86528047bdb724c318.tar.gz rapier-3004a7d38da447e307e11d86528047bdb724c318.tar.bz2 rapier-3004a7d38da447e307e11d86528047bdb724c318.zip | |
chore: update to nalgebra 0.33 and parry 0.16 (#664)
Diffstat (limited to 'crates/rapier3d')
| -rw-r--r-- | crates/rapier3d/Cargo.toml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/crates/rapier3d/Cargo.toml b/crates/rapier3d/Cargo.toml index 2142e82..db40c57 100644 --- a/crates/rapier3d/Cargo.toml +++ b/crates/rapier3d/Cargo.toml @@ -21,7 +21,7 @@ dim3 = [] f32 = [] parallel = ["rayon"] simd-stable = ["parry3d/simd-stable", "simba/wide", "simd-is-enabled"] -simd-nightly = ["parry3d/simd-nightly", "simba/packed_simd", "simd-is-enabled"] +simd-nightly = ["parry3d/simd-nightly", "simba/portable_simd", "simd-is-enabled"] # Do not enable this feature directly. It is automatically # enabled with the "simd-stable" or "simd-nightly" feature. simd-is-enabled = ["vec_map"] @@ -51,19 +51,19 @@ required-features = ["dim3", "f32"] vec_map = { version = "0.8", optional = true } instant = { version = "0.1", features = ["now"], optional = true } num-traits = "0.2" -nalgebra = "0.32" -parry3d = "0.15.0" -simba = "0.8" +nalgebra = "0.33" +parry3d = "0.16.0" +simba = "0.9" approx = "0.5" rayon = { version = "1", optional = true } crossbeam = "0.8" arrayvec = "0.7" bit-vec = "0.6" -rustc-hash = "1" +rustc-hash = "2" serde = { version = "1", features = ["derive"], optional = true } downcast-rs = "1.2" num-derive = "0.4" -bitflags = "1" +bitflags = "2" log = "0.4" ordered-float = "4" thiserror = "1" |
