1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-09 03:53:00 +00:00

update dep graphs

This commit is contained in:
Rob Ede 2022-02-01 00:23:58 +00:00
parent 5469b02638
commit 30aa64ea32
No known key found for this signature in database
GPG key ID: 97C636207D3EF933
3 changed files with 18 additions and 17 deletions

View file

@ -19,6 +19,7 @@ digraph {
"web" -> { "codec" "service" "utils" "router" "rt" "server" "macros" "web-codegen" "http" "awc" }
"web" -> { "tls" }[color=blue] // optional
"web-codegen" -> { "router" }
"awc" -> { "codec" "service" "http" "rt" }
"web-actors" -> { "actix" "web" "http" "codec" }
"multipart" -> { "web" "service" "utils" }

View file

@ -2,23 +2,23 @@ digraph {
subgraph cluster_web {
label="actix/actix-web"
"awc"
"actix-web"
"actix-files"
"actix-http"
"actix-multipart"
"actix-web-actors"
"actix-web-codegen"
"actix-http-test"
"actix-test"
"actix-router"
"web"
"files"
"http"
"multipart"
"web-actors"
"web-codegen"
"http-test"
"test"
"router"
}
"actix-web" -> { "actix-web-codegen" "actix-http" "actix-router" }
"awc" -> { "actix-http" }
"actix-web-codegen" -> { "actix-router" }
"actix-web-actors" -> { "actix" "actix-web" "actix-http" }
"actix-multipart" -> { "actix-web" }
"actix-files" -> { "actix-web" }
"actix-http-test" -> { "awc" }
"actix-test" -> { "actix-web" "awc" "actix-http-test" }
"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" }
}