1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 01:08:10 +00:00
actix-web/docs/graphs/net-only.dot

37 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2020-08-09 12:54:35 +00:00
digraph {
2021-04-01 14:26:13 +00:00
rankdir=TB
2020-08-09 12:54:35 +00:00
subgraph cluster_net {
2021-04-01 14:26:13 +00:00
label="actix-net"
2021-03-29 10:52:59 +00:00
"actix-codec" "actix-macros" "actix-rt" "actix-server" "actix-service"
2021-08-06 19:10:58 +00:00
"actix-tls" "actix-tracing" "actix-utils"
2021-04-01 14:26:13 +00:00
}
subgraph cluster_other {
label="other actix owned crates"
{ rank=same; "local-channel" "local-waker" "bytestring" }
}
subgraph cluster_tokio {
label="tokio"
"tokio" "tokio-util"
2020-08-09 12:54:35 +00:00
}
2021-04-01 14:26:13 +00:00
"actix-codec" -> { "tokio" }
"actix-codec" -> { "tokio-util" }[color=red]
"actix-utils" -> { "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-04-01 14:26:13 +00:00
"actix-tls" -> { "tokio-util" }[color="#009900"]
"actix-server" -> { "actix-service" "actix-rt" "actix-utils" "tokio" }
2021-03-29 10:52:59 +00:00
"actix-rt" -> { "actix-macros" "tokio" }
"local-channel" -> { "local-waker" }
2021-04-01 14:26:13 +00:00
// invisible edges to force nicer layout
edge [style=invis]
"actix-macros" -> "tokio"
"actix-service" -> "bytestring"
"actix-macros" -> "bytestring"
2020-08-09 12:54:35 +00:00
}