This library is a (hopefully) ergonomic library for plotting graphs. It outputs the Graphviz language DOT. Graphs written in DOT can then be easily converted to SVG or other image formats using the Graphviz dot executable.
The structs in this library leverage the Rust type system and lifetimes to ensure that it's (in theory)
impossible to use them to construct an invalid DOT graph. It's important to note that this means you need
to make sure that child structs go out of scope before using their parents again. This is to make sure that
the [Drop
] writes the closing brackets correctly.
Have a look at the API on docs.rs for examples and how to get coding.
This library only writes DOT in a strongly typed way. It doesn't read DOT or render DOT into image files.
Please feel free to open pull request