Release v0.11.0

This commit is contained in:
Sébastien Crozet
2021-08-08 18:46:55 +02:00
committed by Sébastien Crozet
parent 57aec69c1e
commit 48d0df11d7
8 changed files with 44 additions and 31 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "rapier_testbed2d"
version = "0.10.0"
version = "0.11.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
description = "Testbed for the Rapier 2-dimensional physics engine in Rust."
homepage = "http://rapier.org"
@@ -22,20 +22,20 @@ required-features = [ "dim2" ]
default = [ "dim2" ]
dim2 = [ ]
parallel = [ "rapier2d/parallel", "num_cpus" ]
other-backends = [ "wrapped2d", "nphysics2d" ]
other-backends = [ "wrapped2d", "nphysics2d", "ncollide2d" ]
[dependencies]
nalgebra = { version = "0.28", features = [ "rand" ] }
nalgebra = { version = "0.29", features = [ "rand" ] }
rand = "0.8"
rand_pcg = "0.3"
instant = { version = "0.1", features = [ "web-sys", "now" ]}
bitflags = "1"
num_cpus = { version = "1", optional = true }
wrapped2d = { version = "0.4", optional = true }
parry2d = "0.6"
ncollide2d = "0.31"
nphysics2d = { version = "0.23", optional = true }
parry2d = "0.7"
ncollide2d = { version = "0.32", optional = true }
nphysics2d = { version = "0.24", optional = true }
crossbeam = "0.8"
bincode = "1"
Inflector = "0.11"
@@ -54,5 +54,5 @@ bevy_webgl2 = "0.5"
[dependencies.rapier2d]
path = "../rapier2d"
version = "0.10"
version = "0.11"
features = [ "serde-serialize" ]