1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 00:21:08 +01:00
actix-web/docs/graphs/dependency-graphs.md
2020-08-09 13:54:35 +01:00

369 B

Actix Ecosystem Dependency Graphs

See rendered versions of these dot graphs on the wiki.

Rendering

Dot graphs were rendered using the dot command from GraphViz:

for f in $(ls docs/graphs/*.dot | xargs); do dot $f -Tpng -o${f:r}.png; done