1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-04-27 06:18:44 +00:00
actix-web/docs/graphs
2022-02-15 20:49:10 +00:00
..
.gitignore add dep graph dot graphs (#1601) 2020-08-09 13:54:35 +01:00
net-only.dot update graphs 2021-08-12 21:04:26 +01:00
README.md update dep graphs 2022-02-01 00:23:58 +00:00
web-focus.dot bump actix-codec to 0.5 2022-02-15 20:49:10 +00:00
web-only.dot update dep graphs 2022-02-01 00:23:58 +00:00

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