1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/docs/graphs/net-only.dot

20 lines
737 B
Plaintext
Raw Normal View History

2020-08-09 12:54:35 +00:00
digraph {
subgraph cluster_net {
label="actix/actix-net";
2021-03-29 10:52:59 +00:00
"actix-codec" "actix-macros" "actix-rt" "actix-server" "actix-service"
"actix-tls" "actix-tracing" "actix-utils" "actix-router"
"local-channel" "local-waker"
2020-08-09 12:54:35 +00:00
}
2021-03-29 10:52:59 +00:00
"actix-codec" -> { "actix-rt" "actix-service" "local-channel" "tokio" }
"actix-utils" -> { "actix-rt" "actix-service" "local-waker" }
2020-08-09 12:54:35 +00:00
"actix-tracing" -> { "actix-service" }
2020-12-29 00:22:13 +00:00
"actix-tls" -> { "actix-service" "actix-codec" "actix-utils" "actix-rt" }
2021-03-29 10:52:59 +00:00
"actix-server" -> { "actix-service" "actix-rt" "actix-codec" "actix-utils" "tokio" }
"actix-rt" -> { "actix-macros" "tokio" }
"local-channel" -> { "local-waker" }
"tokio" [fontcolor = darkgreen]
2020-08-09 12:54:35 +00:00
}