1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-13 10:49:26 +00:00

update dotgraphs

This commit is contained in:
Rob Ede 2020-11-25 00:54:00 +00:00
parent e72b787ba7
commit fe6ad816cc
No known key found for this signature in database
GPG key ID: C2A3B36E841A91E6
2 changed files with 24 additions and 20 deletions

View file

@ -2,29 +2,31 @@ 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" "codegen"
"http-test"
} }
"actix-web" -> { "actix-codec" "actix-service" "actix-utils" "actix-router" "actix-rt" "actix-server" "actix-testing" "actix-macros" "actix-threadpool" "actix-tls" "actix-web-codegen" "actix-http" "awc" } "web" -> { "codec" "service" "utils" "router" "rt" "server" "testing" "macros" "threadpool" "tls" "codegen" "http" "awc" }
"awc" -> { "actix-codec" "actix-service" "actix-http" "actix-rt" } "awc" -> { "codec" "service" "http" "rt" }
"actix-web-actors" -> { "actix" "actix-web" "actix-http" "actix-codec" } "web-actors" -> { "actix" "web" "http" "codec" }
"actix-multipart" -> { "actix-web" "actix-service" "actix-utils" } "multipart" -> { "web" "service" "utils" }
"actix-http" -> { "actix-service" "actix-codec" "actix-connect" "actix-utils" "actix-rt" "actix-threadpool" } "http" -> { "service" "codec" "connect" "utils" "rt" "threadpool" }
"actix-http" -> { "actix" "actix-tls" }[color=blue] // optional "http" -> { "actix" "tls" }[color=blue] // optional
"actix-files" -> { "actix-web" "actix-http" } "files" -> { "web" "http" }
"http-test" -> { "service" "codec" "connect" "utils" "rt" "server" "testing" "awc" }
// net // net
"actix-utils" -> { "actix-service" "actix-rt" "actix-codec" } "utils" -> { "service" "rt" "codec" }
"actix-tracing" -> { "actix-service" } "tracing" -> { "service" }
"actix-tls" -> { "actix-service" "actix-codec" "actix-utils" } "tls" -> { "service" "codec" "utils" }
"actix-testing" -> { "actix-rt" "actix-macros" "actix-server" "actix-service" } "testing" -> { "rt" "macros" "server" "service" }
"actix-server" -> { "actix-service" "actix-rt" "actix-codec" "actix-utils" } "server" -> { "service" "rt" "codec" "utils" }
"actix-rt" -> { "actix-macros" "actix-threadpool" } "rt" -> { "macros" "threadpool" }
"actix-connect" -> { "actix-service" "actix-codec" "actix-utils" "actix-rt" } "connect" -> { "service" "codec" "utils" "rt" }
} }

View file

@ -8,6 +8,7 @@ digraph {
"actix-multipart" "actix-multipart"
"actix-web-actors" "actix-web-actors"
"actix-web-codegen" "actix-web-codegen"
"actix-http-test"
} }
"actix-web" -> { "actix-web-codegen" "actix-http" "awc" } "actix-web" -> { "actix-web-codegen" "actix-http" "awc" }
@ -16,4 +17,5 @@ digraph {
"actix-multipart" -> { "actix-web" } "actix-multipart" -> { "actix-web" }
"actix-http" -> { "actix" }[color=blue] // optional "actix-http" -> { "actix" }[color=blue] // optional
"actix-files" -> { "actix-web" "actix-http" } "actix-files" -> { "actix-web" "actix-http" }
"actix-http-test" -> { "awc" }
} }