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
40 lines (35 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 1.11 KB
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
[package]
name = "bevy_mod_debugdump"
version = "0.11.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 = []
[dependencies]
bevy_ecs = { version = "0.14.0-rc.3" }
bevy_app = { version = "0.14.0-rc.3" }
bevy_utils = { version = "0.14.0-rc.3" }
bevy_render = { version = "0.14.0-rc.3" }
bevy_color = { version = "0.14.0-rc.3" }
pretty-type-name = "1.0"
petgraph = "0.6"
once_cell = "1.17"
lexopt = "0.3.0"
[dev-dependencies]
bevy = { version = "0.14.0-rc.3" }
[[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" }