-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 877 Bytes
/
Cargo.toml
File metadata and controls
35 lines (29 loc) · 877 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
[package]
name = "insta-kill"
version = "0.1.6"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
# https://github.com/rust-lang/cargo/issues/4897
[profile.wasm]
inherits = "release"
panic = "abort"
opt-level = 'z'
lto = true
codegen-units = 1
[dependencies]
chrono = "0.4.31"
rand = "0.8.5"
rand_xoshiro = "0.6.0"
bevy = "0.12.1"
bevy_mod_reqwest = "0.12.0"
bevy_screen_diagnostics = "0.4.0"
bevy_asset_loader = { version = "0.19.0", features = ["2d"] }
bevy_ecs_ldtk = { git = "https://github.com/PraxTube/bevy_ecs_ldtk.git", branch = "feat/bevy-0.12", features = ["atlas"]}
bevy_rapier2d = "0.23.0"
bevy_kira_audio = "0.18.0"
bevy_trickfilm = { git = "https://github.com/PraxTube/bevy_trickfilm", branch = "main" }
noisy_bevy = "0.5.0"