1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-12 10:19:36 +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" -> { "codec" "service" "utils" "router" "rt" "server" "macros" "web-codegen" "http" "awc" }
"web" -> { "tls" }[color=blue] // optional "web" -> { "tls" }[color=blue] // optional
"web-codegen" -> { "router" }
"awc" -> { "codec" "service" "http" "rt" } "awc" -> { "codec" "service" "http" "rt" }
"web-actors" -> { "actix" "web" "http" "codec" } "web-actors" -> { "actix" "web" "http" "codec" }
"multipart" -> { "web" "service" "utils" } "multipart" -> { "web" "service" "utils" }

View file

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