aboutsummaryrefslogtreecommitdiff
path: root/build/rapier_testbed3d
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2020-10-27 09:57:26 +0100
committerGitHub <noreply@github.com>2020-10-27 09:57:26 +0100
commit93153f5d93358e83c8a4ca2b7195bf9aae95ffb9 (patch)
tree16ccb1aedc30d5c09d59e6ee5c7faa987e67b202 /build/rapier_testbed3d
parentf8acf6a5e9d3ba537dac6502b0e0541236b418c5 (diff)
parentffbc3c02c7d328d5c48a3efb84d35f5911f1880b (diff)
downloadrapier-93153f5d93358e83c8a4ca2b7195bf9aae95ffb9.tar.gz
rapier-93153f5d93358e83c8a4ca2b7195bf9aae95ffb9.tar.bz2
rapier-93153f5d93358e83c8a4ca2b7195bf9aae95ffb9.zip
Merge pull request #41 from dimforge/cylinder
Add cylinder and cone support + use a trait-object for shapes.
Diffstat (limited to 'build/rapier_testbed3d')
-rw-r--r--build/rapier_testbed3d/Cargo.toml14
1 files changed, 7 insertions, 7 deletions
diff --git a/build/rapier_testbed3d/Cargo.toml b/build/rapier_testbed3d/Cargo.toml
index 7675701..e99d741 100644
--- a/build/rapier_testbed3d/Cargo.toml
+++ b/build/rapier_testbed3d/Cargo.toml
@@ -22,19 +22,19 @@ parallel = [ "rapier3d/parallel", "num_cpus" ]
other-backends = [ "physx", "physx-sys", "glam", "nphysics3d" ]
[dependencies]
-nalgebra = "0.22"
-kiss3d = { version = "0.25", features = [ "conrod" ] }
+nalgebra = "0.23"
+kiss3d = { version = "0.27", features = [ "conrod" ] }
rand = "0.7"
rand_pcg = "0.2"
instant = { version = "0.1", features = [ "web-sys", "now" ]}
bitflags = "1"
-glam = { version = "0.8", optional = true }
+glam = { version = "0.9", optional = true }
num_cpus = { version = "1", optional = true }
-ncollide3d = "0.24"
-nphysics3d = { version = "0.17", optional = true }
-physx = { version = "0.6", optional = true }
+ncollide3d = "0.26"
+nphysics3d = { version = "0.18", optional = true }
+physx = { version = "0.7", optional = true }
physx-sys = { version = "0.4", optional = true }
-crossbeam = "0.7"
+crossbeam = "0.8"
bincode = "1"
flexbuffers = "0.1"
serde_cbor = "0.11"