Files
rapier/examples3d/Cargo.toml
Sébastien Crozet 317322b31b feat: reduce the amount of duplicate work the broad-phase is doing for user changes and CCD + release v0.28.0 (#872)
* feat: reduce the amount of duplicate work the broad-phase is doing for user changes and CCD

* Release v0.28.0

* chore: fix warnings

* chore: clippy fixes

* chore: more clippy fixes
2025-08-08 18:15:34 +02:00

47 lines
1.0 KiB
TOML

[package]
name = "rapier-examples-3d"
version = "0.1.0"
authors = ["Sébastien Crozet <sebcrozet@dimforge.com>"]
edition = "2024"
default-run = "all_examples3"
[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.9"
getrandom = { version = "0.2", features = ["js"] }
wasm-bindgen = "0.2"
obj-rs = { version = "0.7", default-features = false }
serde = "1"
bincode = "1"
serde_json = "1"
dot_vox = "5"
[dependencies.rapier_testbed3d]
path = "../crates/rapier_testbed3d"
features = ["profiler_ui"]
[dependencies.rapier3d]
path = "../crates/rapier3d"
[dependencies.rapier3d-urdf]
path = "../crates/rapier3d-urdf"
features = ["stl"]
[[bin]]
name = "all_examples3"
path = "./all_examples3.rs"
[[bin]]
name = "harness_capsules3"
path = "./harness_capsules3.rs"
#[lib]
#crate-type = ["cdylib", "rlib"]
#path = "./all_examples3_wasm.rs"