-
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
building with rapier 0.20 as dependency
TODO: verify runtime
- Loading branch information
Showing
16 changed files
with
531 additions
and
98 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name = "dimforge_rapier2d" # Can't be named rapier2d which conflicts with the dependency. | ||
name = "dimforge_rapier2d" # Can't be named rapier2d which conflicts with the dependency. | ||
version = "0.13.1" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
description = "2-dimensional physics engine in Rust - official JS bindings." | ||
|
@@ -23,7 +23,12 @@ required-features = ["dim2"] | |
|
||
|
||
[dependencies] | ||
rapier2d = { version = "0.19.0", features = ["wasm-bindgen", "serde-serialize", "enhanced-determinism", "debug-render"] } | ||
rapier2d = { version = "0.20.0", features = [ | ||
"wasm-bindgen", | ||
"serde-serialize", | ||
"enhanced-determinism", | ||
"debug-render", | ||
] } | ||
ref-cast = "1" | ||
wasm-bindgen = "0.2.90" | ||
js-sys = "0.3" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name = "dimforge_rapier3d" # Can't be named rapier3d which conflicts with the dependency. | ||
name = "dimforge_rapier3d" # Can't be named rapier3d which conflicts with the dependency. | ||
version = "0.13.1" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
description = "3-dimensional physics engine in Rust - official JS bindings." | ||
|
@@ -23,7 +23,12 @@ required-features = ["dim3"] | |
|
||
|
||
[dependencies] | ||
rapier3d = { version = "0.19.0", features = ["wasm-bindgen", "serde-serialize", "enhanced-determinism", "debug-render"] } | ||
rapier3d = { version = "0.20.0", features = [ | ||
"wasm-bindgen", | ||
"serde-serialize", | ||
"enhanced-determinism", | ||
"debug-render", | ||
] } | ||
ref-cast = "1" | ||
wasm-bindgen = "^0.2.90" | ||
js-sys = "0.3" | ||
|
Oops, something went wrong.