-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathCargo.toml
43 lines (37 loc) · 1.16 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
[package]
name = "bevy_mod_debugdump"
version = "0.12.1"
repository = "https://github.com/jakobhellermann/bevy_mod_debugdump"
readme = "README.md"
license = "MIT OR Apache-2.0"
description = "Visualization tools for bevy"
keywords = ["bevy", "schedule", "visual", "render", "graph"]
authors = ["Jakob Hellermann <[email protected]>"]
edition = "2021"
exclude = ["docs/*"]
[features]
default = ["render_graph"]
render_graph = ["dep:bevy_render"]
[dependencies]
bevy_ecs = { version = "0.15.0" }
bevy_app = { version = "0.15.0" }
bevy_utils = { version = "0.15.0" }
bevy_render = { version = "0.15.0", optional = true }
bevy_color = { version = "0.15.0" }
pretty-type-name = "1.0"
petgraph = "0.6"
lexopt = "0.3.0"
[dev-dependencies]
bevy = { version = "0.15.0" }
[[example]]
name = "generate_docs"
required-features = ["render_graph"]
[[example]]
name = "print_render_graph"
required-features = ["render_graph"]
# [patch.crates-io]
# bevy_ecs = { path = "../bevy/crates/bevy_ecs" }
# bevy_app = { path = "../bevy/crates/bevy_app" }
# bevy_utils = { path = "../bevy/crates/bevy_utils" }
# bevy_render = { path = "../bevy/crates/bevy_render" }
# bevy = { path = "../bevy" }