1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-23 16:21:06 +01:00

update awc docs link, formatting (#2180)

This commit is contained in:
Ibraheem Ahmed 2021-04-20 14:57:27 -04:00 committed by GitHub
parent 427fe6bd82
commit 6a9c4f1026
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -31,7 +31,7 @@
* Static assets * Static assets
* SSL support using OpenSSL or Rustls * SSL support using OpenSSL or Rustls
* Middlewares ([Logger, Session, CORS, etc](https://actix.rs/docs/middleware/)) * Middlewares ([Logger, Session, CORS, etc](https://actix.rs/docs/middleware/))
* Includes an async [HTTP client](https://docs.rs/actix-web/latest/actix_web/client/index.html) * Includes an async [HTTP client](https://docs.rs/awc/)
* Runs on stable Rust 1.46+ * Runs on stable Rust 1.46+
## Documentation ## Documentation

View File

@ -30,16 +30,16 @@
//! //!
//! To get started navigating the API docs, you may consider looking at the following pages first: //! To get started navigating the API docs, you may consider looking at the following pages first:
//! //!
//! * [App]: This struct represents an Actix Web application and is used to //! * [`App`]: This struct represents an Actix Web application and is used to
//! configure routes and other common application settings. //! configure routes and other common application settings.
//! //!
//! * [HttpServer]: This struct represents an HTTP server instance and is //! * [`HttpServer`]: This struct represents an HTTP server instance and is
//! used to instantiate and configure servers. //! used to instantiate and configure servers.
//! //!
//! * [web]: This module provides essential types for route registration as well as //! * [`web`]: This module provides essential types for route registration as well as
//! common utilities for request handlers. //! common utilities for request handlers.
//! //!
//! * [HttpRequest] and [HttpResponse]: These //! * [`HttpRequest`] and [`HttpResponse`]: These
//! structs represent HTTP requests and responses and expose methods for creating, inspecting, //! structs represent HTTP requests and responses and expose methods for creating, inspecting,
//! and otherwise utilizing them. //! and otherwise utilizing them.
//! //!
@ -55,7 +55,7 @@
//! * Static assets //! * Static assets
//! * SSL support using OpenSSL or Rustls //! * SSL support using OpenSSL or Rustls
//! * Middlewares ([Logger, Session, CORS, etc](https://actix.rs/docs/middleware/)) //! * Middlewares ([Logger, Session, CORS, etc](https://actix.rs/docs/middleware/))
//! * Includes an async [HTTP client](https://actix.rs/actix-web/actix_web/client/index.html) //! * Includes an async [HTTP client](https://docs.rs/awc/)
//! * Runs on stable Rust 1.46+ //! * Runs on stable Rust 1.46+
//! //!
//! ## Crate Features //! ## Crate Features