13 lines
203 B
TOML
13 lines
203 B
TOML
|
|
[package]
|
||
|
|
name = "app"
|
||
|
|
edition = "2024"
|
||
|
|
version = "0.1.0"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
bevy = { version = "0.18", default-features = false, features = [
|
||
|
|
"3d",
|
||
|
|
"webgl2",
|
||
|
|
"web",
|
||
|
|
"tonemapping_luts",
|
||
|
|
] }
|