1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 09:18:26 +00:00
actix-web/docs/graphs/web-only.dot

25 lines
540 B
Plaintext
Raw Normal View History

2020-08-09 12:54:35 +00:00
digraph {
subgraph cluster_web {
label="actix/actix-web"
"awc"
2022-02-01 00:23:58 +00:00
"web"
"files"
"http"
"multipart"
"web-actors"
"web-codegen"
"http-test"
"test"
"router"
2020-08-09 12:54:35 +00:00
}
2022-02-01 00:23:58 +00:00
"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" }
2020-08-09 12:54:35 +00:00
}