mirror of
https://github.com/actix/actix-web.git
synced 2024-11-03 15:39:50 +00:00
19 lines
539 B
Text
19 lines
539 B
Text
digraph {
|
|
subgraph cluster_web {
|
|
label="actix/actix-web"
|
|
"awc"
|
|
"actix-web"
|
|
"actix-files"
|
|
"actix-http"
|
|
"actix-multipart"
|
|
"actix-web-actors"
|
|
"actix-web-codegen"
|
|
}
|
|
|
|
"actix-web" -> { "actix-web-codegen" "actix-http" "awc" }
|
|
"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" "actix-http" }
|
|
}
|