1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-09 12:02:59 +00:00
actix-web/docs/graphs/web-only.dot
2022-02-01 00:23:58 +00:00

25 lines
540 B
Plaintext

digraph {
subgraph cluster_web {
label="actix/actix-web"
"awc"
"web"
"files"
"http"
"multipart"
"web-actors"
"web-codegen"
"http-test"
"test"
"router"
}
"web" -> { "web-codegen" "http" "router" }
"awc" -> { "http" }
"web-codegen" -> { "router" }[color = red]
"web-actors" -> { "actix" "web" "http" }
"multipart" -> { "web" }
"files" -> { "web" }
"http-test" -> { "awc" }
"test" -> { "web" "awc" "http-test" }
}