aboutsummaryrefslogtreecommitdiff
path: root/benchmarks2d/Cargo.toml
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2020-09-28 10:19:49 +0200
committerCrozet Sébastien <developer@crozet.re>2020-09-28 10:24:42 +0200
commite7466e2f6923d24e987a34f8ebaf839346af8d4e (patch)
treefa25c9c94bf4cd18a84f1a8c2bea327cd875af5f /benchmarks2d/Cargo.toml
parent0829ed10ac33bd3697fe2f92dd6b8f55df1094b4 (diff)
downloadrapier-e7466e2f6923d24e987a34f8ebaf839346af8d4e.tar.gz
rapier-e7466e2f6923d24e987a34f8ebaf839346af8d4e.tar.bz2
rapier-e7466e2f6923d24e987a34f8ebaf839346af8d4e.zip
Move 2D benchmarks into their own directory/crate.
Diffstat (limited to 'benchmarks2d/Cargo.toml')
-rw-r--r--benchmarks2d/Cargo.toml27
1 files changed, 27 insertions, 0 deletions
diff --git a/benchmarks2d/Cargo.toml b/benchmarks2d/Cargo.toml
new file mode 100644
index 0000000..b1ee8db
--- /dev/null
+++ b/benchmarks2d/Cargo.toml
@@ -0,0 +1,27 @@
+[package]
+name = "rapier-benchmarks-2d"
+version = "0.1.0"
+authors = [ "Sébastien Crozet <developer@crozet.re>" ]
+edition = "2018"
+
+[features]
+parallel = [ "rapier2d/parallel", "rapier_testbed2d/parallel" ]
+simd-stable = [ "rapier2d/simd-stable" ]
+simd-nightly = [ "rapier2d/simd-nightly" ]
+other-backends = [ "rapier_testbed2d/other-backends" ]
+enhanced-determinism = [ "rapier2d/enhanced-determinism" ]
+
+[dependencies]
+rand = "0.7"
+Inflector = "0.11"
+nalgebra = "0.22"
+
+[dependencies.rapier_testbed2d]
+path = "../build/rapier_testbed2d"
+
+[dependencies.rapier2d]
+path = "../build/rapier2d"
+
+[[bin]]
+name = "all_benchmarks2"
+path = "./all_benchmarks2.rs" \ No newline at end of file