-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
61 lines (52 loc) · 1.34 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
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "bevy_light_2d"
version = "0.5.0"
edition = "2021"
categories = ["game-engines", "graphics", "rendering"]
description = "General purpose 2d lighting for the Bevy game engine."
authors = ["James Gayfer"]
repository = "https://github.com/jgayfer/bevy_light_2d"
license = "MIT"
readme = "README.md"
exclude = ["assets/*", "static/*"]
[dependencies]
bevy = { version = "0.15", default-features = false, features = [
"bevy_render",
"bevy_core_pipeline",
"bevy_winit",
"x11",
# TODO: Remove when https://github.com/bevyengine/bevy/issues/16568 is resolved.
"bevy_window",
# TODO: Remove when https://github.com/bevyengine/bevy/issues/16563 is resolved.
"png"
] }
smallvec = "1.13"
[dev-dependencies]
bevy = { version = "0.15", default-features = false, features = [
"bevy_render",
"bevy_core_pipeline",
"bevy_winit",
"bevy_sprite",
"png",
"x11",
# TODO: Remove when https://github.com/bevyengine/bevy/issues/16568 is resolved.
"bevy_window"
] }
[lints.clippy]
type_complexity = "allow"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "multiple"
path = "examples/multiple.rs"
[[example]]
name = "dungeon"
path = "examples/dungeon.rs"
[[example]]
name = "occlusion"
path = "examples/occlusion.rs"