-
-
Notifications
You must be signed in to change notification settings - Fork 331
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (22 loc) · 644 Bytes
/
Cargo.toml
File metadata and controls
27 lines (22 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "rapier-benchmarks-3d"
version = "0.1.0"
authors = ["Sébastien Crozet <sebcrozet@dimforge.com>"]
edition = "2024"
[features]
parallel = ["rapier3d/parallel", "rapier_testbed3d/parallel"]
simd-stable = ["rapier3d/simd-stable"]
simd-nightly = ["rapier3d/simd-nightly"]
other-backends = ["rapier_testbed3d/other-backends"]
enhanced-determinism = ["rapier3d/enhanced-determinism"]
[dependencies]
rand = "0.8"
Inflector = "0.11"
oorandom = "11"
[dependencies.rapier_testbed3d]
path = "../crates/rapier_testbed3d"
[dependencies.rapier3d]
path = "../crates/rapier3d"
[[bin]]
name = "all_benchmarks3"
path = "all_benchmarks3.rs"