diff options
| author | LLLL Colonq <llll@colonq> | 2025-03-17 03:04:52 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2025-03-17 03:04:52 -0400 |
| commit | 09f04692782e3cd35fbfd0f4f1601cecd29b862c (patch) | |
| tree | 6fd989cb71beabb52455da0e5a6b6f0d2123f4b4 /Cargo.toml | |
| parent | 7407dc2a99ce74ae733c350ad239d2a4017e0684 (diff) | |
Use rapier
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -21,7 +21,7 @@ gltf = {path = "deps/gltf", features = ["extras", "names", "utils"]} # loader fo # gltf = {version = "*", features = ["extras", "names"]} # model loader image = "*" # texture loader fontdue = "*" # truetype fonts -glam = "*" # linear algebra +glam = "0.29" # linear algebra log = "*" # logging rand = {version = "=0.8.5", features = ["small_rng"]} # rng serde = {version = "*", features = ["derive"]} # serialization @@ -32,6 +32,9 @@ reqwest = "*" # http requests bytes = "*" # bytes for http responses bitflags = "*" # bitwise flags color-eyre = { version = "*", default-features = false } # error reporting and formatting +rapier3d = "*" # rigid-body physics +parry3d = "*" # collision detection +nalgebra = {version = "0.33.2", features = ["convert-glam029"]} # linear algebra library for rapier3d [target.'cfg(target_arch = "wasm32")'.dependencies] winit = {version = "=0.29.15", features = ["serde"]} # windowing and events |
