-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 796 Bytes
/
Copy pathCargo.toml
File metadata and controls
41 lines (38 loc) · 796 Bytes
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
35
36
37
38
39
40
41
[package]
name = "libracity"
version = "0.1.0"
edition = "2021"
resolver = "2"
description = "Libra City: city planning on a needle"
keywords = ["game", "gamedev", "bevy"]
license = "MIT OR Apache-2.0"
[features]
default = [
"native",
]
shared = [
"bevy/bevy_gltf",
"bevy/bevy_winit",
"bevy/render",
"bevy/png",
]
native = [
"shared",
"bevy_kira_audio/mp3",
]
web = [
"shared",
]
[dependencies]
bevy = { version = "0.7", default-features = false }
bevy_kira_audio = "0.10"
#bevy_prototype_debug_lines = "0.3"
bevy-inspector-egui = "0.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0.4"
parking_lot = "0.11"
bevy_tweening = "0.4"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2.79"
console_error_panic_hook = "0.1"