mirror of
https://github.com/actix/actix-web.git
synced 2024-11-03 15:39:50 +00:00
30 lines
1.3 KiB
Text
30 lines
1.3 KiB
Text
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-web" -> { "actix-codec" "actix-service" "actix-utils" "actix-router" "actix-rt" "actix-server" "macros" "threadpool" "actix-tls" "actix-web-codegen" "actix-http" "awc" }
|
|
"awc" -> { "actix-codec" "actix-service" "actix-http" "actix-rt" }
|
|
"actix-web-actors" -> { "actix" "actix-web" "actix-http" "actix-codec" }
|
|
"actix-multipart" -> { "actix-web" "actix-service" "actix-utils" }
|
|
"actix-http" -> { "actix-service" "actix-codec" "actix-tls" "actix-utils" "actix-rt" "threadpool" }
|
|
"actix-http" -> { "actix" "actix-tls" }[color=blue] // optional
|
|
"actix-files" -> { "actix-web" }
|
|
"actix-http-test" -> { "actix-service" "actix-codec" "actix-tls" "actix-utils" "actix-rt" "actix-server" "awc" }
|
|
|
|
// net
|
|
|
|
"actix-utils" -> { "actix-service" "actix-rt" "actix-codec" }
|
|
"actix-tracing" -> { "actix-service" }
|
|
"actix-tls" -> { "actix-service" "actix-codec" "actix-utils" }
|
|
"actix-server" -> { "actix-service" "actix-rt" "actix-codec" "actix-utils" }
|
|
"actix-rt" -> { "macros" "threadpool" }
|
|
}
|