Release v0.9.0

This commit is contained in:
Crozet Sébastien
2021-06-02 17:41:49 +02:00
committed by Sébastien Crozet
parent c7b876e2f7
commit fdd370e51a
10 changed files with 38 additions and 24 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "rapier3d"
version = "0.8.0"
version = "0.9.0"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
description = "3-dimensional physics engine in Rust."
documentation = "http://docs.rs/rapier3d"
@@ -20,7 +20,6 @@ default = [ "dim3", "f32", "default-sets" ]
dim3 = [ ]
f32 = [ ]
default-sets = [ ]
avoid-fe-exceptions = [ ]
parallel = [ "rayon" ]
simd-stable = [ "parry3d/simd-stable", "simba/wide", "simd-is-enabled" ]
simd-nightly = [ "parry3d/simd-nightly", "simba/packed_simd", "simd-is-enabled" ]
@@ -31,6 +30,9 @@ wasm-bindgen = [ "instant/wasm-bindgen" ]
serde-serialize = [ "nalgebra/serde-serialize", "parry3d/serde-serialize", "serde", "bit-vec/serde" ]
enhanced-determinism = [ "simba/libm_force", "parry3d/enhanced-determinism" ]
# Feature used for debugging only.
debug-disable-legitimate-fe-exceptions = [ ]
# Feature used for development and debugging only.
# Do not enable this unless you are working on the engine internals.
dev-remove-slow-accessors = []