23 lines
566 B
TOML
23 lines
566 B
TOML
[package]
|
|
name = "mgq-fighter"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bevy_ecs = "0.13.2"
|
|
cgmath = "0.18.0"
|
|
egui = "0.23.0"
|
|
egui-winit = "0.23.0"
|
|
egui_glow = { version = "0.23.0", features = ["winit"] }
|
|
gilrs = { version = "0.10.7", features = ["serde-serialize"] }
|
|
glow = "0.12.3"
|
|
glutin = "0.30.10"
|
|
glutin-winit = "0.3.0"
|
|
image = "0.25.1"
|
|
raw-window-handle = "0.6.1"
|
|
ron = "0.8.1"
|
|
serde = { version = "1.0.199", features = ["derive"] }
|
|
winit = "0.28.7"
|