aboutsummaryrefslogtreecommitdiff
path: root/build/rapier2d/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'build/rapier2d/Cargo.toml')
-rw-r--r--build/rapier2d/Cargo.toml7
1 files changed, 4 insertions, 3 deletions
diff --git a/build/rapier2d/Cargo.toml b/build/rapier2d/Cargo.toml
index 3bbb8f0..1729e6a 100644
--- a/build/rapier2d/Cargo.toml
+++ b/build/rapier2d/Cargo.toml
@@ -12,8 +12,9 @@ license = "Apache-2.0"
edition = "2018"
[features]
-default = [ "dim2" ]
+default = [ "dim2", "f32" ]
dim2 = [ ]
+f32 = [ ]
parallel = [ "rayon" ]
simd-stable = [ "simba/wide", "simd-is-enabled" ]
simd-nightly = [ "simba/packed_simd", "simd-is-enabled" ]
@@ -27,14 +28,14 @@ enhanced-determinism = [ "simba/libm_force", "cdl2d/enhanced-determinism", "inde
[lib]
name = "rapier2d"
path = "../../src/lib.rs"
-required-features = [ "dim2" ]
+required-features = [ "dim2", "f32" ]
[dependencies]
vec_map = "0.8"
instant = { version = "0.1", features = [ "now" ]}
num-traits = "0.2"
-nalgebra = "0.23"
+nalgebra = "0.24"
cdl2d = "0.1"
simba = "0.3"
approx = "0.4"