-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 891 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 = "canal-mania"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
dev = []
[dependencies]
bevy = "0.9"
console_error_panic_hook = "0.1"
bevy_asset_loader = { version = "0.14", features = ["standard_dynamic_assets", "stageless" ]}
bevy_common_assets = { version = "0.4", features= [ "json", "yaml"]}
serde = "*"
serde_json = "*"
smooth-bevy-cameras = "*"
bevy_egui = "*"
bevy-inspector-egui = "0.16.0-pre.2"
bevy-sequential-actions = "0.6.0"
bevy_mod_picking = "0.11.0"
bevy_prototype_lyon = "0.7.2"
iyes_loopless = "*"
noisy_bevy = "*"
# Enable a small amount of optimization in debug mode
# [profile.dev]
# opt-level = 1
# # Enable high optimizations for dependencies (incl. Bevy), but not for our code:
# [profile.dev.package."*"]
# opt-level = 3