mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-23 16:21:06 +01:00
f66774e30b
fully removes time crate from public api of -http
20 lines
710 B
Plaintext
20 lines
710 B
Plaintext
digraph {
|
|
subgraph cluster_net {
|
|
label="actix/actix-net";
|
|
"actix-codec" "actix-macros" "actix-rt" "actix-server" "actix-service"
|
|
"actix-tls" "actix-tracing" "actix-utils" "actix-router"
|
|
"local-channel" "local-waker"
|
|
}
|
|
|
|
"actix-codec" -> { "actix-rt" "actix-service" "local-channel" "tokio" }
|
|
"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-rt" -> { "actix-macros" "tokio" }
|
|
|
|
"local-channel" -> { "local-waker" }
|
|
|
|
"tokio" [fontcolor = darkgreen]
|
|
}
|