#dot #graphviz #graph #format #image-format

dot-writer

A library for writing the Graphviz DOT graph language

4 releases

0.1.3 Nov 7, 2022
0.1.2 Jul 3, 2021
0.1.1 Jun 19, 2021
0.1.0 Jun 18, 2021

#121 in Visualization

Download history 1332/week @ 2023-12-18 357/week @ 2023-12-25 578/week @ 2024-01-01 676/week @ 2024-01-08 637/week @ 2024-01-15 814/week @ 2024-01-22 168/week @ 2024-01-29 765/week @ 2024-02-05 727/week @ 2024-02-12 817/week @ 2024-02-19 848/week @ 2024-02-26 640/week @ 2024-03-04 639/week @ 2024-03-11 278/week @ 2024-03-18 384/week @ 2024-03-25 694/week @ 2024-04-01

2,022 downloads per month
Used in 8 crates

MIT license

40KB
663 lines

Graphviz DOT Writer

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 harder 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.

Getting started

Have a look at the API on docs.rs for examples and how to get coding.

Non Goals

This library only writes DOT in a strongly typed way. It doesn't read DOT or render DOT into image files.

Contributing

Contributions welcome, please feel free to open issues and pull requests. I've only just realised (7/11/22) that I hadn't enabled issues on the github repository, so my apologies to anyone who tried to post issues in the past! Drop me (DrGabble) a message if you have any questions on anything at all, always happy to help.

No runtime deps