1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 00:21:08 +01:00
actix-web/docs/graphs/web-only.dot

22 lines
586 B
Plaintext
Raw Normal View History

2020-08-09 14:54:35 +02:00
digraph {
subgraph cluster_web {
label="actix/actix-web"
"awc"
"actix-web"
"actix-files"
"actix-http"
"actix-multipart"
"actix-web-actors"
"actix-web-codegen"
2020-11-25 01:54:00 +01:00
"actix-http-test"
2020-08-09 14:54:35 +02:00
}
"actix-web" -> { "actix-web-codegen" "actix-http" "awc" }
2020-08-09 14:54:35 +02:00
"awc" -> { "actix-http" }
"actix-web-actors" -> { "actix" "actix-web" "actix-http" }
"actix-multipart" -> { "actix-web" }
"actix-http" -> { "actix" }[color=blue] // optional
"actix-files" -> { "actix-web" }
2020-11-25 01:54:00 +01:00
"actix-http-test" -> { "awc" }
2020-08-09 14:54:35 +02:00
}