mirror of
https://github.com/actix/actix-web.git
synced 2024-11-22 01:21:10 +00:00
update dep graphs
This commit is contained in:
parent
5469b02638
commit
30aa64ea32
3 changed files with 18 additions and 17 deletions
|
@ -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" }
|
||||||
|
|
|
@ -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" }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue