Skip to content

Commit

Permalink
Add dependency graph to README
Browse files Browse the repository at this point in the history
Closes #56
  • Loading branch information
bvssvni committed Oct 28, 2014
1 parent 18e7b75 commit 5b53753
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Cargo.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
digraph example3 {
N0[label="glfw_window"];
N1[label="glfw-sys"];
N2[label="semver"];
N3[label="shader_version"];
N4[label="input"];
N5[label="event"];
N6[label="rust-xml"];
N7[label="gl_generator"];
N8[label="khronos_api"];
N9[label="gl"];
N10[label="glfw"];
N5 -> N4[label=""];
N7 -> N6[label=""];
N7 -> N8[label=""];
N9 -> N7[label=""];
N10 -> N2[label=""];
N10 -> N1[label=""];
N0 -> N10[label=""];
N0 -> N5[label=""];
N0 -> N4[label=""];
N0 -> N9[label=""];
N0 -> N3[label=""];
}
Binary file added Cargo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,8 @@ let frame = gfx::Frame::new(w as u16, h as u16);
### Troubleshooting

* OSX: https://github.com/PistonDevelopers/rust-empty/issues/48

## Dependencies

![dependencies](./Cargo.png)

0 comments on commit 5b53753

Please sign in to comment.