mirror of
https://github.com/actix/actix-web.git
synced 2024-11-10 19:01:05 +00:00
24 lines
540 B
Text
24 lines
540 B
Text
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" }
|
|
}
|