forked from Lommix/solis_2d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (34 loc) · 868 Bytes
/
Cargo.toml
File metadata and controls
43 lines (34 loc) · 868 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
36
37
38
39
40
41
42
43
[package]
name = "ashscript_solis_2d"
authors = ["Lorenz Mielke", "Ashscript Constributors"]
description = "2D global illumination with optimized radiance cascade"
keywords = ["illumination", "bevy", "light", "gamedev", "radiance cascade"]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[dependencies]
bevy = "0.14"
bitflags = "2.5.0"
bytemuck = "1.15.0"
rand = "0.8.5"
[build]
rustflags = ["--cfg=web_sys_unstable_apis"]
[dev-dependencies]
bevy_egui = "0.28"
egui_extras = { version = "0.29.1", features = ["all_loaders"] }
image = "0.25.2"
[features]
dev = ["bevy/file_watcher", "bevy/embedded_watcher"]
[[example]]
name = "light"
path = "examples/light.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[example]]
name="benchmark"
path="examples/benchmark.rs"