diff options
Diffstat (limited to 'build/rapier2d/Cargo.toml')
| -rw-r--r-- | build/rapier2d/Cargo.toml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build/rapier2d/Cargo.toml b/build/rapier2d/Cargo.toml index 394d31a..99229cf 100644 --- a/build/rapier2d/Cargo.toml +++ b/build/rapier2d/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rapier2d" -version = "0.8.0" +version = "0.9.0" authors = [ "Sébastien Crozet <developer@crozet.re>" ] description = "2-dimensional physics engine in Rust." documentation = "http://docs.rs/rapier2d" @@ -20,7 +20,6 @@ default = [ "dim2", "f32", "default-sets" ] dim2 = [ ] f32 = [ ] default-sets = [ ] -avoid-fe-exceptions = [ ] parallel = [ "rayon" ] simd-stable = [ "simba/wide", "simd-is-enabled" ] simd-nightly = [ "simba/packed_simd", "simd-is-enabled" ] @@ -31,6 +30,9 @@ wasm-bindgen = [ "instant/wasm-bindgen" ] serde-serialize = [ "nalgebra/serde-serialize", "parry2d/serde-serialize", "serde", "bit-vec/serde", "arrayvec/serde" ] enhanced-determinism = [ "simba/libm_force", "parry2d/enhanced-determinism", "indexmap" ] +# 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 = [] |
