-
-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
22 additions
and
19 deletions.
There are no files selected for viewing
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,6 +1,6 @@ | ||
[package] | ||
name = "rapier2d-f64" | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
description = "2-dimensional physics engine in Rust." | ||
documentation = "https://docs.rs/rapier2d" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "rapier2d" | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
description = "2-dimensional physics engine in Rust." | ||
documentation = "https://docs.rs/rapier2d" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "rapier3d-f64" | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
description = "3-dimensional physics engine in Rust." | ||
documentation = "https://docs.rs/rapier3d" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "rapier3d-stl" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
description = "STL file loader for the 3D rapier physics engine." | ||
documentation = "https://docs.rs/rapier3d-stl" | ||
|
@@ -16,4 +16,4 @@ edition = "2021" | |
thiserror = "1.0.61" | ||
stl_io = "0.7" | ||
|
||
rapier3d = { version = "0.20", path = "../rapier3d" } | ||
rapier3d = { version = "0.21", path = "../rapier3d" } |
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,6 +1,6 @@ | ||
[package] | ||
name = "rapier3d-urdf" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
description = "URDF file loader for the 3D rapier physics engine." | ||
documentation = "https://docs.rs/rapier3d-urdf" | ||
|
@@ -22,5 +22,5 @@ bitflags = "2" | |
# NOTE: we are not using the (more recent) urdf-rs crate because of https://github.com/openrr/urdf-rs/issues/94 | ||
xurdf = "0.2" | ||
|
||
rapier3d = { version = "0.20", path = "../rapier3d" } | ||
rapier3d-stl = { version = "0.1.0", path = "../rapier3d-stl", optional = true } | ||
rapier3d = { version = "0.21", path = "../rapier3d" } | ||
rapier3d-stl = { version = "0.2.0", path = "../rapier3d-stl", optional = true } |
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,6 +1,6 @@ | ||
[package] | ||
name = "rapier3d" | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
description = "3-dimensional physics engine in Rust." | ||
documentation = "https://docs.rs/rapier3d" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "rapier_testbed2d-f64" | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
description = "Testbed for the Rapier 2-dimensional physics engine in Rust." | ||
homepage = "http://rapier.org" | ||
|
@@ -59,5 +59,5 @@ bevy = { version = "0.13", default-features = false, features = ["bevy_asset", " | |
[dependencies.rapier] | ||
package = "rapier2d-f64" | ||
path = "../rapier2d-f64" | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
features = ["serde-serialize", "debug-render", "profiler"] |
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,6 +1,6 @@ | ||
[package] | ||
name = "rapier_testbed2d" | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
description = "Testbed for the Rapier 2-dimensional physics engine in Rust." | ||
homepage = "http://rapier.org" | ||
|
@@ -59,5 +59,5 @@ bevy = { version = "0.13", default-features = false, features = ["bevy_sprite", | |
[dependencies.rapier] | ||
package = "rapier2d" | ||
path = "../rapier2d" | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
features = ["serde-serialize", "debug-render", "profiler"] |
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,6 +1,6 @@ | ||
[package] | ||
name = "rapier_testbed3d-f64" | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
description = "Testbed for the Rapier 3-dimensional physics engine in Rust." | ||
homepage = "http://rapier.org" | ||
|
@@ -58,5 +58,5 @@ bevy = { version = "0.13", default-features = false, features = ["bevy_winit", " | |
[dependencies.rapier] | ||
package = "rapier3d-f64" | ||
path = "../rapier3d-f64" | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
features = ["serde-serialize", "debug-render", "profiler"] |
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,6 +1,6 @@ | ||
[package] | ||
name = "rapier_testbed3d" | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
authors = ["Sébastien Crozet <[email protected]>"] | ||
description = "Testbed for the Rapier 3-dimensional physics engine in Rust." | ||
homepage = "http://rapier.org" | ||
|
@@ -62,5 +62,5 @@ bevy = { version = "0.13", default-features = false, features = ["bevy_winit", " | |
[dependencies.rapier] | ||
package = "rapier3d" | ||
path = "../rapier3d" | ||
version = "0.20.0" | ||
version = "0.21.0" | ||
features = ["serde-serialize", "debug-render", "profiler"] |