Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 519 Bytes

File metadata and controls

21 lines (15 loc) · 519 Bytes

Diagrams

Paired light/dark Graphviz diagrams for the ARCP Rust SDK. Edit the .dot sources; render with dot -Tsvg.

Architecture

ARCP Rust SDK architecture

Render

cd docs/diagrams
for f in *.dot; do dot -Tsvg "$f" -o "${f%.dot}.svg"; done

graphviz provides dot. On macOS: brew install graphviz. On Debian/Ubuntu: apt-get install -y graphviz.