RustPhysicsMQ/Cargo.toml

28 lines
551 B
TOML
Raw Normal View History

2025-11-23 18:40:48 +00:00
[package]
2026-01-06 16:41:14 +00:00
name = "RustPhysicsMQ"
2025-11-23 18:40:48 +00:00
version = "0.1.0"
edition = "2024"
2026-01-06 16:41:14 +00:00
default-run = "RustPhysicsMQ"
2025-11-23 18:40:48 +00:00
[dependencies]
macroquad = "0.4.14"
rapier3d = { version = "0.31", features = [ "simd-stable" ] }
nalgebra = {version="0.34", features = ["convert-glam027"]}
glam = "0.27"
rand = "0.9.2"
2025-11-29 23:22:17 +00:00
strum = { version = "0.27", features = ["derive"] }
clearscreen = "4.0.2"
gilrs = "0.11.0"
serde = {version = "1.0.228", features = ["serde_derive"]}
toml = "0.9.8"
2025-11-23 18:40:48 +00:00
2026-01-06 16:41:14 +00:00
2025-11-23 18:40:48 +00:00
[[bin]]
2026-01-06 16:41:14 +00:00
name = "batch"
path = "src/main_batch.rs"
[profile.dev.package.rapier3d]
opt-level = 3