1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00

update docs

This commit is contained in:
Rob Ede 2021-03-08 23:49:12 +00:00
parent 23b0e64199
commit c4e5651215
No known key found for this signature in database
GPG key ID: 97C636207D3EF933

View file

@ -1,35 +1,44 @@
digraph { digraph {
subgraph cluster_web { subgraph cluster_web {
label="actix/actix-web" label="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"
{ rank=same; "multipart" "web-actors" "http-test" };
{ rank=same; "files" "awc" "web" };
{ rank=same; "web-codegen" "http" };
} }
"actix-web" -> { "actix-codec" "actix-service" "actix-utils" "actix-router" "actix-rt" "actix-server" "macros" "threadpool" "actix-tls" "actix-web-codegen" "actix-http" "awc" } "web" -> { "codec" "service" "utils" "router" "rt" "server" "macros" "web-codegen" "http" "awc" }
"awc" -> { "actix-codec" "actix-service" "actix-http" "actix-rt" } "web" -> { "tls" }[color=blue] // optional
"actix-web-actors" -> { "actix" "actix-web" "actix-http" "actix-codec" } "awc" -> { "codec" "service" "http" "rt" }
"actix-multipart" -> { "actix-web" "actix-service" "actix-utils" } "web-actors" -> { "actix" "web" "http" "codec" }
"actix-http" -> { "actix-service" "actix-codec" "actix-tls" "actix-utils" "actix-rt" "threadpool" } "multipart" -> { "web" "service" "utils" }
"actix-http" -> { "actix-tls" }[color=blue] // optional "http" -> { "service" "codec" "utils" "rt" }
"actix-files" -> { "actix-web" } "http" -> { "tls" }[color=blue] // optional
"actix-http-test" -> { "actix-service" "actix-codec" "actix-tls" "actix-utils" "actix-rt" "actix-server" "awc" } "files" -> { "web" }
"http-test" -> { "service" "codec" "utils" "rt" "server" "awc" }
"http-test" -> { "tls" }[color=blue] // optional
// 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-server" -> { "actix-service" "actix-rt" "actix-codec" "actix-utils" } "server" -> { "service" "rt" "codec" "utils" }
"actix-rt" -> { "macros" "threadpool" } "rt" -> { "macros" }
{ rank=same; "utils" "codec" };
{ rank=same; "rt" "macros" "service" "router" };
// actix // actix
"actix" -> { "actix-rt" } "actix" -> { "rt" }
} }