https://github.com/brson/cargo-lock-to-dot
Generate a GraphViz DOT file from a Rust Cargo.lock file
https://github.com/brson/cargo-lock-to-dot
Last synced: 10 months ago
JSON representation
Generate a GraphViz DOT file from a Rust Cargo.lock file
- Host: GitHub
- URL: https://github.com/brson/cargo-lock-to-dot
- Owner: brson
- Created: 2015-05-09T05:42:06.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-11T20:32:57.000Z (about 11 years ago)
- Last Synced: 2024-12-15T03:23:33.254Z (over 1 year ago)
- Language: Python
- Size: 213 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Convert Cargo.lock to the [DOT] format for rendering with [GraphViz].
```
$ ./cargo-lock-to-dot.py Cargo.lock --interesting=foo,bar | dot -Tsvg > depgraph.svg
```
The optional `--interesting` flag specifies crates to be visually highlighted.
[GraphViz]: http://www.graphviz.org
[DOT]: https://en.wikipedia.org/wiki/DOT_%28graph_description_language%29