-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (28 loc) · 808 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
31
32
33
34
[package]
name = "game-template"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.12", features = ["flac", "mp3", "file_watcher"] }
leafwing-input-manager = "0.11"
bevy_common_assets = { version = "0.8.0", features = ["yaml"] }
bevy_asset_loader = { version = "0.18", features = [
"standard_dynamic_assets",
"2d",
] }
bevy_vector_shapes = "0.6"
console_error_panic_hook = "*"
bevy-ui-dsl = "0.7"
bevy-inspector-egui = "0.21"
serde = "1"
bevy_turborand = { version = "0.7", features = ["rand"] }
bevy-ui-navigation = "0.33.0"
dexterous_developer = "0.0.12"
[lib]
name = "game_lib"
path = "src/lib.rs"
crate-type = ["rlib", "dylib"]
[[bin]]
name = "game"
path = "src/main.rs"