An open API service indexing awesome lists of open source software.

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

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