dot-writer 0.1.4

A library for writing the Graphviz DOT graph language
Documentation
  • Coverage
  • 46.6%
    48 out of 103 items documented1 out of 1 items with examples
  • Size
  • Source code size: 43.88 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 6.34 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • DrGabble

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.