diff options
Diffstat (limited to 'build/rapier3d')
| -rw-r--r-- | build/rapier3d/Cargo.toml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build/rapier3d/Cargo.toml b/build/rapier3d/Cargo.toml index da6b40b..5f4c94b 100644 --- a/build/rapier3d/Cargo.toml +++ b/build/rapier3d/Cargo.toml @@ -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 = [] |
