-
Notifications
You must be signed in to change notification settings - Fork 38
/
Cargo.toml
50 lines (44 loc) · 1.06 KB
/
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
46
47
48
49
50
[package]
edition = "2021"
name = "bevy_magic_light_2d"
version = "0.8.1"
description = "Experimental dynamic 2D global illumination system for Bevy, based on SDF ray-marching and screen space irradiance cache probes"
homepage = "https://github.com/zaycev/bevy-magic-light-2d"
repository = "https://github.com/zaycev/bevy-magic-light-2d"
authors = ["Vladimir Zaytsev"]
license-file = "LICENSE"
readme = "README.md"
[features]
default = ["egui"]
egui = ["dep:bevy-inspector-egui"]
[dependencies]
bevy = { version = "0.14.1", default-features = false, features = [
"bevy_render",
"bevy_core_pipeline",
"bevy_winit",
"bevy_asset",
"bevy_sprite",
"bevy_pbr",
"embedded_watcher",
"multi_threaded",
] }
bevy-inspector-egui = { version = "0.25.2", optional = true }
log = "0.4.20"
rand = "0.8.5"
[dev-dependencies]
bevy = "0.14.1"
[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