28 lines
551 B
TOML
28 lines
551 B
TOML
[package]
|
|
name = "RustPhysicsMQ"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
default-run = "RustPhysicsMQ"
|
|
|
|
[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"
|
|
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"
|
|
|
|
|
|
|
|
[[bin]]
|
|
name = "batch"
|
|
path = "src/main_batch.rs"
|
|
|
|
|
|
[profile.dev.package.rapier3d]
|
|
opt-level = 3
|