mirror of
https://github.com/actix/actix-web.git
synced 2024-11-03 15:39:50 +00:00
21 lines
630 B
Text
21 lines
630 B
Text
digraph {
|
|
subgraph cluster_net {
|
|
label="actix/actix-net";
|
|
"actix-codec"
|
|
"actix-macros"
|
|
"actix-rt"
|
|
"actix-server"
|
|
"actix-service"
|
|
"actix-threadpool"
|
|
"actix-tls"
|
|
"actix-tracing"
|
|
"actix-utils"
|
|
"actix-router"
|
|
}
|
|
|
|
"actix-utils" -> { "actix-service" "actix-rt" "actix-codec" }
|
|
"actix-tracing" -> { "actix-service" }
|
|
"actix-tls" -> { "actix-service" "actix-codec" "actix-utils" "actix-rt" }
|
|
"actix-server" -> { "actix-service" "actix-rt" "actix-codec" "actix-utils" }
|
|
"actix-rt" -> { "actix-macros" "actix-threadpool" }
|
|
}
|