1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-12 10:19:36 +00:00
actix-web/docs/graphs/net-only.dot

22 lines
630 B
Plaintext
Raw Normal View History

2020-08-09 12:54:35 +00:00
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" }
2020-12-29 00:22:13 +00:00
"actix-tls" -> { "actix-service" "actix-codec" "actix-utils" "actix-rt" }
2020-08-09 12:54:35 +00:00
"actix-server" -> { "actix-service" "actix-rt" "actix-codec" "actix-utils" }
"actix-rt" -> { "actix-macros" "actix-threadpool" }
}