aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2021-05-01 10:17:23 +0200
committerGitHub <noreply@github.com>2021-05-01 10:17:23 +0200
commita385efc5582c7918f11c01a2b6bf26a46919d3a0 (patch)
treec5b9c5e6fcb5561421e2b4b9d99f28e4c83c745e /build
parentaaf80bfa872c6f29b248cab8eb5658ab0d73cb4a (diff)
parent2dfbd9ae92c139e306afc87994adac82489f30eb (diff)
downloadrapier-a385efc5582c7918f11c01a2b6bf26a46919d3a0.tar.gz
rapier-a385efc5582c7918f11c01a2b6bf26a46919d3a0.tar.bz2
rapier-a385efc5582c7918f11c01a2b6bf26a46919d3a0.zip
Merge pull request #183 from dimforge/bundles
Make Rapier accept any kind of data storage instead of RigidBodySet/ColliderSet
Diffstat (limited to 'build')
-rw-r--r--build/rapier2d-f64/Cargo.toml3
-rw-r--r--build/rapier2d/Cargo.toml3
-rw-r--r--build/rapier3d-f64/Cargo.toml3
-rw-r--r--build/rapier3d/Cargo.toml3
4 files changed, 8 insertions, 4 deletions
diff --git a/build/rapier2d-f64/Cargo.toml b/build/rapier2d-f64/Cargo.toml
index 3314825..d244d9b 100644
--- a/build/rapier2d-f64/Cargo.toml
+++ b/build/rapier2d-f64/Cargo.toml
@@ -16,9 +16,10 @@ edition = "2018"
maintenance = { status = "actively-developed" }
[features]
-default = [ "dim2", "f64" ]
+default = [ "dim2", "f64", "default-sets" ]
dim2 = [ ]
f64 = [ ]
+default-sets = [ ]
parallel = [ "rayon" ]
simd-stable = [ "simba/wide", "simd-is-enabled" ]
simd-nightly = [ "simba/packed_simd", "simd-is-enabled" ]
diff --git a/build/rapier2d/Cargo.toml b/build/rapier2d/Cargo.toml
index 790bb94..a149bd9 100644
--- a/build/rapier2d/Cargo.toml
+++ b/build/rapier2d/Cargo.toml
@@ -16,9 +16,10 @@ edition = "2018"
maintenance = { status = "actively-developed" }
[features]
-default = [ "dim2", "f32" ]
+default = [ "dim2", "f32", "default-sets" ]
dim2 = [ ]
f32 = [ ]
+default-sets = [ ]
parallel = [ "rayon" ]
simd-stable = [ "simba/wide", "simd-is-enabled" ]
simd-nightly = [ "simba/packed_simd", "simd-is-enabled" ]
diff --git a/build/rapier3d-f64/Cargo.toml b/build/rapier3d-f64/Cargo.toml
index cb4f03c..4b6519c 100644
--- a/build/rapier3d-f64/Cargo.toml
+++ b/build/rapier3d-f64/Cargo.toml
@@ -16,9 +16,10 @@ edition = "2018"
maintenance = { status = "actively-developed" }
[features]
-default = [ "dim3", "f64" ]
+default = [ "dim3", "f64", "default-sets" ]
dim3 = [ ]
f64 = [ ]
+default-sets = [ ]
parallel = [ "rayon" ]
simd-stable = [ "parry3d-f64/simd-stable", "simba/wide", "simd-is-enabled" ]
simd-nightly = [ "parry3d-f64/simd-nightly", "simba/packed_simd", "simd-is-enabled" ]
diff --git a/build/rapier3d/Cargo.toml b/build/rapier3d/Cargo.toml
index e797ea5..8a3877b 100644
--- a/build/rapier3d/Cargo.toml
+++ b/build/rapier3d/Cargo.toml
@@ -16,9 +16,10 @@ edition = "2018"
maintenance = { status = "actively-developed" }
[features]
-default = [ "dim3", "f32" ]
+default = [ "dim3", "f32", "default-sets" ]
dim3 = [ ]
f32 = [ ]
+default-sets = [ ]
parallel = [ "rayon" ]
simd-stable = [ "parry3d/simd-stable", "simba/wide", "simd-is-enabled" ]
simd-nightly = [ "parry3d/simd-nightly", "simba/packed_simd", "simd-is-enabled" ]