-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
55 lines (46 loc) · 1.04 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
[package]
name = "bevy_light_2d"
version = "0.4.2"
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.14", default-features = false, features = [
"bevy_render",
"bevy_core_pipeline",
"bevy_winit",
"x11",
] }
smallvec = "1.13"
[dev-dependencies]
bevy = { version = "0.14", default-features = false, features = [
"bevy_render",
"bevy_core_pipeline",
"bevy_winit",
"bevy_sprite",
"png",
"x11"
] }
[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"