aboutsummaryrefslogtreecommitdiff
path: root/examples3d/Cargo.toml
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2021-01-29 14:42:32 +0100
committerGitHub <noreply@github.com>2021-01-29 14:42:32 +0100
commit7ca46f38cde6cf8bf8bf41ea6067ae5bc938205c (patch)
tree3781b9d7c92a6a8111573ba4cae1c5d41435950e /examples3d/Cargo.toml
parente6fc8f67faf3e37afe38d683cbd930d457f289be (diff)
parent825f33efaec4ce6a8903751e836a0ea9c466ff92 (diff)
downloadrapier-7ca46f38cde6cf8bf8bf41ea6067ae5bc938205c.tar.gz
rapier-7ca46f38cde6cf8bf8bf41ea6067ae5bc938205c.tar.bz2
rapier-7ca46f38cde6cf8bf8bf41ea6067ae5bc938205c.zip
Merge pull request #79 from dimforge/split_geom
Move most of the geometric code to another crate.
Diffstat (limited to 'examples3d/Cargo.toml')
-rw-r--r--examples3d/Cargo.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/examples3d/Cargo.toml b/examples3d/Cargo.toml
index 5362554..3f1d3f0 100644
--- a/examples3d/Cargo.toml
+++ b/examples3d/Cargo.toml
@@ -14,7 +14,8 @@ enhanced-determinism = [ "rapier3d/enhanced-determinism" ]
[dependencies]
rand = "0.7"
Inflector = "0.11"
-nalgebra = "0.23"
+nalgebra = "0.24"
+kiss3d = "0.29"
[dependencies.rapier_testbed3d]
path = "../build/rapier_testbed3d"
@@ -25,3 +26,7 @@ path = "../build/rapier3d"
[[bin]]
name = "all_examples3"
path = "./all_examples3.rs"
+
+[[bin]]
+name = "harness_capsules3"
+path = "./harness_capsules3.rs"