-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (23 loc) · 864 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 = "obscure-resurrection"
version = "0.1.0"
edition = "2021"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.7", features = ["wav"] }
# Asset loading
bevy_embedded_assets = "0.3"
bevy_asset_loader = "0.10.0"
# The "atlas" feature is required to work in the WASM export.
# This feature is not in the current release, so we have to pull from main
bevy_ecs_ldtk = { version = "0.3", features = ["atlas"] }
big-brain = { git = "https://github.com/zkat/big-brain" }
heron = { version = "3.0.0", features = ["2d"] }
wasm-bindgen = "0.2.79"
# Enable only 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