[package]
edition = "2024"
rust-version = "1.85"
name = "rapier-viewport-plugin"
version = "0.1.0"
build = false
exclude = [
"examples/",
"docs/",
"LOG.md",
"capability-coverage.md",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rapier 3D physics plugin for viewport-lib"
homepage = "https://github.com/grimandgreedy/rapier-viewport-plugin"
documentation = "https://docs.rs/rapier-viewport-plugin"
readme = "README.md"
keywords = [
"physics",
"rapier",
"viewport",
"viewport-lib",
"3d",
]
categories = [
"graphics",
"simulation",
"game-development",
]
license = "GPL-3.0-only"
repository = "https://github.com/grimandgreedy/rapier-viewport-plugin"
[lib]
name = "rapier_viewport_plugin"
path = "src/lib.rs"
[[test]]
name = "body_lifecycle"
path = "tests/body_lifecycle.rs"
[[test]]
name = "contact_events"
path = "tests/contact_events.rs"
[[test]]
name = "determinism"
path = "tests/determinism.rs"
[[test]]
name = "escape_hatches"
path = "tests/escape_hatches.rs"
[[test]]
name = "mutex_poisoning"
path = "tests/mutex_poisoning.rs"
[[test]]
name = "prepare_sync"
path = "tests/prepare_sync.rs"
[[test]]
name = "raycast_through_state"
path = "tests/raycast_through_state.rs"
[[test]]
name = "simulate_writeback"
path = "tests/simulate_writeback.rs"
[dependencies.glam]
version = "=0.30.10"
features = ["bytemuck"]
[dependencies.indexmap]
version = "2"
[dependencies.parry3d]
version = "0.26"
[dependencies.rapier3d]
version = "0.32"
features = ["default"]
[dependencies.viewport-lib]
version = "0.19"
[dev-dependencies.eframe]
version = "=0.33.3"
features = [
"wgpu",
"default_fonts",
]
default-features = false