forked from zaycev/bevy-magic-light-2d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (40 loc) · 853 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
35
36
37
38
39
40
41
42
43
44
45
[package]
edition = "2021"
name = "bevy_magic_light_2d"
version = "0.3.0"
[lib]
name = "bevy_magic_light_2d"
crate-type = ["cdylib", "lib", "staticlib"]
path = "src/lib.rs"
[dependencies]
anyhow = "1.0.68"
bevy = { version = "0.9.1", default-features = false, features = [
"wayland",
"bevy_asset",
"bevy_render",
"bevy_winit",
"filesystem_watcher",
"png",
] }
bevy_egui = { version = "0.18.0", default-features = false }
bevy-inspector-egui = "0.15.0"
bevy-inspector-egui-derive = "0.15.0"
egui = { version = "0.20.1", features = ["bytemuck"] }
encase = "0.4.1"
log = "0.4.17"
rand = "0.8.5"
[profile.release]
codegen-units = 1
debug = false
lto = "thin"
opt-level = 3
panic = "abort"
[profile.dev.package."*"]
opt-level = 3
debug = true
incremental = true
[profile.dev]
codegen-units = 16
opt-level = 0
debug = true
incremental = true