mirror of
https://github.com/italicsjenga/valence.git
synced 2024-12-23 22:41:30 +11:00
1aae22ca3e
## Description Adds the `dump_schedule` crate which is a simple tool that writes valence's schedule graph to a file named ~~`graph.gv`~~ `graph.svg`. ## Test Plan Steps: 1. `cargo r -p dump_schedule` 2. Paste the contents of `graph.gv` to https://edotor.net/ 3. Look at the pretty graph.
9 lines
166 B
TOML
9 lines
166 B
TOML
[package]
|
|
name = "dump_schedule"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bevy_mod_debugdump = "0.7.0"
|
|
valence = { path = "../valence", version = "0.2.0" }
|