From af5218f78cf56dd4f6fffb4192967329b3666be7 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Tue, 30 Mar 2021 11:59:15 +0100 Subject: [PATCH] fix doc graph --- docs/graphs/net-only.dot | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/docs/graphs/net-only.dot b/docs/graphs/net-only.dot index ce6de9cde..bee0185ab 100644 --- a/docs/graphs/net-only.dot +++ b/docs/graphs/net-only.dot @@ -3,31 +3,26 @@ digraph { subgraph cluster_net { label="actix-net" - "actix-codec" "actix-macros" "actix-rt" "actix-server" "actix-service" "actix-tls" "actix-tracing" "actix-utils" "actix-router" } subgraph cluster_other { label="other actix owned crates" - - { - rank=same - "local-channel" "local-waker" "bytestring" - } + { rank=same; "local-channel" "local-waker" "bytestring" } } subgraph cluster_tokio { label="tokio" - - "tokio" [fontcolor = darkgreen] - "tokio-util" [fontcolor = darkgreen] + "tokio" "tokio-util" } - "actix-codec" -> { "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-tls" -> { "tokio-util" }[color="#009900"] "actix-server" -> { "actix-service" "actix-rt" "actix-utils" "tokio" } "actix-rt" -> { "actix-macros" "tokio" } "actix-router" -> { "bytestring" }