forked from jakobhellermann/bevy_mod_debugdump
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 752 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 752 Bytes
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
[package]
name = "bevy_mod_debugdump"
version = "0.7.0"
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 <jakob.hellermann@protonmail.com>"]
edition = "2021"
exclude = ["docs/*"]
[features]
default = ["render_graph"]
render_graph = ["bevy_render"]
[dependencies]
bevy_ecs = "0.10"
bevy_app = "0.10"
bevy_utils = "0.10"
bevy_render = { version = "0.10", optional = true }
pretty-type-name = "1.0"
petgraph = "0.6"
once_cell = "1.17"
[dev-dependencies]
bevy = "0.10"
[[example]]
name = "print_render_graph"
required-features = ["render_graph"]