aboutsummaryrefslogtreecommitdiff
path: root/examples2d/Cargo.toml
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2022-01-02 18:05:50 +0100
committerGitHub <noreply@github.com>2022-01-02 18:05:50 +0100
commit1308db89948bc62fb865b32f832f19268f23dd23 (patch)
treeb3d8b0cbb6d2e75aa8fc7686e9cb8801527a31b8 /examples2d/Cargo.toml
parent8e7da5ad45d180b0d3fa2bde37f8f3771b153b70 (diff)
parent9f9d3293605fa84555c08bec5efe68a71cd18432 (diff)
downloadrapier-1308db89948bc62fb865b32f832f19268f23dd23.tar.gz
rapier-1308db89948bc62fb865b32f832f19268f23dd23.tar.bz2
rapier-1308db89948bc62fb865b32f832f19268f23dd23.zip
Merge pull request #267 from dimforge/multibody
Implement multibody joints, and new velocity-based constraints solver
Diffstat (limited to 'examples2d/Cargo.toml')
-rw-r--r--examples2d/Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples2d/Cargo.toml b/examples2d/Cargo.toml
index 3c065fd..415f994 100644
--- a/examples2d/Cargo.toml
+++ b/examples2d/Cargo.toml
@@ -2,7 +2,7 @@
name = "rapier-examples-2d"
version = "0.1.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
-edition = "2018"
+edition = "2021"
default-run = "all_examples2"
[features]
@@ -19,10 +19,10 @@ lyon = "0.17"
usvg = "0.14"
[dependencies.rapier_testbed2d]
-path = "../build/rapier_testbed2d"
+path = "../crates/rapier_testbed2d"
[dependencies.rapier2d]
-path = "../build/rapier2d"
+path = "../crates/rapier2d"
[[bin]]
name = "all_examples2"