raidillon/game/Cargo.toml
reo 8b5a6167eb Physics Support
- NEW CRATE: raidillon_physics.
- Added new models to be able to test the physics support.
- Added a new system "PhysicsSystem" to apply physics calculations to the ECS world.
- NEW COMPONENT: RigidBodyComponent
2025-10-19 17:40:51 +03:00

20 lines
512 B
TOML

[package]
name = "raidillon_game"
version = "0.1.0"
edition = "2024"
[features]
default = ["glium"]
glium = ["raidillon_glium"]
[dependencies]
raidillon_core = { path = "../core" }
raidillon_platform = { path = "../platform" }
raidillon_assets = { path = "../asset" }
raidillon_ecs = { path = "../ecs" }
raidillon_engine = { path = "../engine" }
raidillon_physics = { path = "../physics" }
raidillon_glium = { path = "../glium_platform", optional = true }
glam = "0.30.5"
winit = "0.30.12"
rapier3d = "0.30.1"