mirror of
https://github.com/fafhrd91/actix-web
synced 2025-06-26 06:57:43 +02:00
migrate to -utils beta 4 (#2127)
This commit is contained in:
@ -1,19 +1,37 @@
|
||||
digraph {
|
||||
rankdir=TB
|
||||
|
||||
subgraph cluster_net {
|
||||
label="actix/actix-net";
|
||||
label="actix-net"
|
||||
"actix-codec" "actix-macros" "actix-rt" "actix-server" "actix-service"
|
||||
"actix-tls" "actix-tracing" "actix-utils" "actix-router"
|
||||
"local-channel" "local-waker"
|
||||
}
|
||||
|
||||
subgraph cluster_other {
|
||||
label="other actix owned crates"
|
||||
{ rank=same; "local-channel" "local-waker" "bytestring" }
|
||||
}
|
||||
|
||||
"actix-codec" -> { "actix-rt" "actix-service" "local-channel" "tokio" }
|
||||
subgraph cluster_tokio {
|
||||
label="tokio"
|
||||
"tokio" "tokio-util"
|
||||
}
|
||||
|
||||
"actix-codec" -> { "tokio" }
|
||||
"actix-codec" -> { "tokio-util" }[color=red]
|
||||
"actix-utils" -> { "local-waker" }
|
||||
"actix-tracing" -> { "actix-service" }
|
||||
"actix-tls" -> { "actix-service" "actix-codec" "actix-utils" "actix-rt" }
|
||||
"actix-server" -> { "actix-service" "actix-rt" "actix-codec" "actix-utils" "tokio" }
|
||||
"actix-tls" -> { "tokio-util" }[color="#009900"]
|
||||
"actix-server" -> { "actix-service" "actix-rt" "actix-utils" "tokio" }
|
||||
"actix-rt" -> { "actix-macros" "tokio" }
|
||||
"actix-router" -> { "bytestring" }
|
||||
|
||||
"local-channel" -> { "local-waker" }
|
||||
|
||||
"tokio" [fontcolor = darkgreen]
|
||||
// invisible edges to force nicer layout
|
||||
edge [style=invis]
|
||||
"actix-macros" -> "tokio"
|
||||
"actix-service" -> "bytestring"
|
||||
"actix-macros" -> "bytestring"
|
||||
}
|
||||
|
Reference in New Issue
Block a user