-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (27 loc) Β· 853 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "super-kaizen-overloaded"
version = "0.1.0"
authors = ["Jerome Humbert <[email protected]>"]
edition = "2021"
resolver = "2"
description = ""
keywords = ["game", "gamedev", "bevy", "shmup", "shoot'em up"]
license = "MIT OR Apache-2.0"
[dependencies]
# Bevy
bevy = { version = "0.7", default-features = false, features = ["render", "bevy_winit", "png", "bevy_gltf"] }
bevy_tweening = "0.4"
bevy_kira_audio = { version = "0.10", features = ["wav"] }
bevy_atmosphere = "0.3.1"
#bevy_atmosphere = { path = "crates/bevy_atmosphere" }
leafwing-input-manager = "0.3"
heron = { version = "3.0", features = ["2d", "debug-2d"] }
# Others
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0.4"
parking_lot = "0.11"
rand = "0.8"
# In-game dev/debug
bevy-inspector-egui = "0.11"
bevy_prototype_debug_lines = "0.7"