-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
68 lines (58 loc) · 1.26 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
62
63
64
65
66
67
68
[package]
name = "bevy_incandescent"
version = "0.2.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/443eb9/bevy_incandescent"
description = "A 2d lighting crate for bevy."
include = ["src/*", "Cargo.toml", "LICENSE", "README.md"]
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[dependencies]
bevy = { version = "0.13", default-features = false, features = [
"bevy_core_pipeline",
"bevy_render",
"png",
"bevy_sprite",
] }
fast_poisson = "1.0"
radsort = "0.1"
thread_local = "1.1"
[dev-dependencies]
bevy = { version = "0.13", features = [
"bevy_ui",
"default_font",
"trace_tracy",
"bevy_winit",
"bevy_asset",
"multi-threaded",
"x11",
"wayland",
] }
bevy_mod_debugdump = "0.10.0"
bevy-inspector-egui = "0.23.2"
rand = "0.8"
[features]
default = []
debug = ["bevy/bevy_gizmos"]
compatibility = []
catalinzz = []
ray_marching = []
# [patch.crates-io]
# bevy = { path = "../bevy" }
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "print_graph"
path = "examples/print_graph.rs"
[[example]]
name = "stress_test"
path = "examples/stress_test.rs"
required-features = []
[[example]]
name = "ray_marching"
path = "examples/ray_marching.rs"
required-features = ["ray_marching"]