1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/docs/graphs/web-focus.dot

36 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-08-09 12:54:35 +00:00
digraph {
subgraph cluster_web {
label="actix/actix-web"
2021-02-10 12:10:03 +00:00
2020-08-09 12:54:35 +00:00
"awc"
2020-12-29 00:22:13 +00:00
"actix-web"
"actix-files"
"actix-http"
"actix-multipart"
"actix-web-actors"
"actix-web-codegen"
"actix-http-test"
2020-08-09 12:54:35 +00:00
}
2020-12-29 00:22:13 +00:00
"actix-web" -> { "actix-codec" "actix-service" "actix-utils" "actix-router" "actix-rt" "actix-server" "macros" "threadpool" "actix-tls" "actix-web-codegen" "actix-http" "awc" }
"awc" -> { "actix-codec" "actix-service" "actix-http" "actix-rt" }
"actix-web-actors" -> { "actix" "actix-web" "actix-http" "actix-codec" }
"actix-multipart" -> { "actix-web" "actix-service" "actix-utils" }
"actix-http" -> { "actix-service" "actix-codec" "actix-tls" "actix-utils" "actix-rt" "threadpool" }
2021-02-10 12:10:03 +00:00
"actix-http" -> { "actix-tls" }[color=blue] // optional
2020-12-29 00:22:13 +00:00
"actix-files" -> { "actix-web" }
"actix-http-test" -> { "actix-service" "actix-codec" "actix-tls" "actix-utils" "actix-rt" "actix-server" "awc" }
2020-08-09 12:54:35 +00:00
// net
2020-12-29 00:22:13 +00:00
"actix-utils" -> { "actix-service" "actix-rt" "actix-codec" }
"actix-tracing" -> { "actix-service" }
"actix-tls" -> { "actix-service" "actix-codec" "actix-utils" }
"actix-server" -> { "actix-service" "actix-rt" "actix-codec" "actix-utils" }
"actix-rt" -> { "macros" "threadpool" }
2021-02-10 12:10:03 +00:00
// actix
"actix" -> { "actix-rt" }
2020-08-09 12:54:35 +00:00
}