diff options
| author | Thierry Berger <contact@thierryberger.com> | 2024-07-12 16:29:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-12 16:29:22 +0200 |
| commit | 01dd2001525850ef0d66374c69e98e1560cb6421 (patch) | |
| tree | 5901b3c00d9ffc53a9af34e0023241eff256c8bc /crates/rapier_testbed3d | |
| parent | 87ada34008f4a1a313ccf8c3040040bab4f10e69 (diff) | |
| download | rapier-01dd2001525850ef0d66374c69e98e1560cb6421.tar.gz rapier-01dd2001525850ef0d66374c69e98e1560cb6421.tar.bz2 rapier-01dd2001525850ef0d66374c69e98e1560cb6421.zip | |
ci: cargo doc step (#671)
Diffstat (limited to 'crates/rapier_testbed3d')
| -rw-r--r-- | crates/rapier_testbed3d/Cargo.toml | 33 |
1 files changed, 28 insertions, 5 deletions
diff --git a/crates/rapier_testbed3d/Cargo.toml b/crates/rapier_testbed3d/Cargo.toml index 5623a90..56290a4 100644 --- a/crates/rapier_testbed3d/Cargo.toml +++ b/crates/rapier_testbed3d/Cargo.toml @@ -3,9 +3,15 @@ name = "rapier_testbed3d" version = "0.21.0" authors = ["Sébastien Crozet <sebcrozet@dimforge.com>"] description = "Testbed for the Rapier 3-dimensional physics engine in Rust." -homepage = "http://rapier.org" +homepage = "http://rapier.rs" repository = "https://github.com/dimforge/rapier" -categories = ["science", "game-development", "mathematics", "simulation", "wasm"] +categories = [ + "science", + "game-development", + "mathematics", + "simulation", + "wasm", +] keywords = ["physics", "dynamics", "rigid", "real-time", "impulse_joints"] license = "Apache-2.0" edition = "2021" @@ -33,7 +39,7 @@ rand = "0.8" rand_pcg = "0.3" instant = { version = "0.1", features = ["web-sys", "now"] } bitflags = "2" -glam = { version = "0.24", optional = true } # For Physx +glam = { version = "0.24", optional = true } # For Physx num_cpus = { version = "1", optional = true } physx = { version = "0.19", features = ["glam"], optional = true } physx-sys = { version = "0.11", optional = true } @@ -52,11 +58,28 @@ bevy_sprite = "0.13" # Dependencies for native only. [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -bevy = { version = "0.13", default-features = false, features = ["bevy_winit", "x11", "tonemapping_luts", "ktx2", "zstd", "bevy_render", "bevy_pbr", "bevy_gizmos"] } +bevy = { version = "0.13", default-features = false, features = [ + "bevy_winit", + "x11", + "tonemapping_luts", + "ktx2", + "zstd", + "bevy_render", + "bevy_pbr", + "bevy_gizmos", +] } # Dependencies for WASM only. [target.'cfg(target_arch = "wasm32")'.dependencies] -bevy = { version = "0.13", default-features = false, features = ["bevy_winit", "tonemapping_luts", "ktx2", "zstd", "bevy_render", "bevy_pbr", "bevy_gizmos"] } +bevy = { version = "0.13", default-features = false, features = [ + "bevy_winit", + "tonemapping_luts", + "ktx2", + "zstd", + "bevy_render", + "bevy_pbr", + "bevy_gizmos", +] } #bevy_webgl2 = "0.5" [dependencies.rapier] |
