2022-07-16 11:59:20 +02:00
|
|
|
module.exports = {
|
2022-11-10 14:09:51 +01:00
|
|
|
docs: {
|
2023-11-01 16:32:44 +01:00
|
|
|
Introduction: ["welcome", "whatis"],
|
2022-11-10 14:09:51 +01:00
|
|
|
Basics: [
|
2023-11-01 16:32:44 +01:00
|
|
|
"getting-started",
|
|
|
|
"application",
|
|
|
|
"server",
|
|
|
|
"extractors",
|
|
|
|
"handlers",
|
2022-11-10 14:09:51 +01:00
|
|
|
],
|
|
|
|
Advanced: [
|
2023-11-01 16:32:44 +01:00
|
|
|
"errors",
|
|
|
|
"url-dispatch",
|
|
|
|
"request",
|
|
|
|
"response",
|
|
|
|
"testing",
|
|
|
|
"middleware",
|
|
|
|
"static-files",
|
2022-11-10 14:09:51 +01:00
|
|
|
],
|
2023-11-01 16:32:44 +01:00
|
|
|
Protocols: ["websockets", "http2"],
|
|
|
|
Patterns: ["autoreload", "databases", "shuttle"],
|
|
|
|
Diagrams: ["http_server_init", "conn_lifecycle"],
|
2022-11-10 14:09:51 +01:00
|
|
|
Actix: [
|
2023-11-01 16:32:44 +01:00
|
|
|
"actix/sec-0-quick-start",
|
|
|
|
"actix/sec-1-getting-started",
|
|
|
|
"actix/sec-2-actor",
|
|
|
|
"actix/sec-3-address",
|
|
|
|
"actix/sec-4-context",
|
|
|
|
"actix/sec-5-arbiter",
|
|
|
|
"actix/sec-6-sync-arbiter",
|
2022-11-10 14:09:51 +01:00
|
|
|
],
|
2023-11-01 16:32:44 +01:00
|
|
|
"API Documentation": [
|
2022-11-10 14:09:51 +01:00
|
|
|
{
|
2023-11-01 16:32:44 +01:00
|
|
|
type: "link",
|
|
|
|
label: "actix",
|
|
|
|
href: "https://docs.rs/actix/latest/actix/",
|
2022-11-10 14:09:51 +01:00
|
|
|
},
|
|
|
|
{
|
2023-11-01 16:32:44 +01:00
|
|
|
type: "link",
|
|
|
|
label: "actix-web",
|
|
|
|
href: "https://docs.rs/actix-web/latest/actix_web/",
|
2022-11-10 14:09:51 +01:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2022-07-16 11:59:20 +02:00
|
|
|
};
|