mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
fix links
This commit is contained in:
parent
f843776f36
commit
b291e29882
@ -13,6 +13,6 @@
|
|||||||
|
|
||||||
## Documentation & Resources
|
## Documentation & Resources
|
||||||
|
|
||||||
- [API Documentation](https://docs.rs/actix-files/)
|
- [API Documentation](https://docs.rs/actix-files)
|
||||||
- [Example Project](https://github.com/actix/examples/tree/master/basics/static_index)
|
- [Example Project](https://github.com/actix/examples/tree/master/basics/static-files)
|
||||||
- Minimum Supported Rust Version (MSRV): 1.54
|
- Minimum Supported Rust Version (MSRV): 1.54
|
||||||
|
@ -104,7 +104,7 @@ The inner field for `web::Path` was made private because It was causing too many
|
|||||||
|
|
||||||
## Rustls Crate Upgrade
|
## Rustls Crate Upgrade
|
||||||
|
|
||||||
Required version of `rustls` dependency was bumped to the latest version 0.20. As a result, the new server config builder has changed. [See the updated example project →.](https://github.com/actix/examples/tree/HEAD/security/rustls/)
|
Required version of `rustls` dependency was bumped to the latest version 0.20. As a result, the new server config builder has changed. [See the updated example project →.](https://github.com/actix/examples/tree/master/https-tls/rustls/)
|
||||||
|
|
||||||
## Removed `awc` Client Re-export
|
## Removed `awc` Client Re-export
|
||||||
|
|
||||||
|
@ -71,26 +71,24 @@ async fn main() -> std::io::Result<()> {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### More examples
|
### More Examples
|
||||||
|
|
||||||
- [Basic Setup](https://github.com/actix/examples/tree/master/basics/basics/)
|
- [Hello World](https://github.com/actix/examples/tree/master/basics/hello-world)
|
||||||
- [Application State](https://github.com/actix/examples/tree/master/basics/state/)
|
- [Basic Setup](https://github.com/actix/examples/tree/master/basics/basics)
|
||||||
- [JSON Handling](https://github.com/actix/examples/tree/master/json/json/)
|
- [Application State](https://github.com/actix/examples/tree/master/basics/state)
|
||||||
- [Multipart Streams](https://github.com/actix/examples/tree/master/forms/multipart/)
|
- [JSON Handling](https://github.com/actix/examples/tree/master/json/json)
|
||||||
- [Diesel Integration](https://github.com/actix/examples/tree/master/databases/diesel/)
|
- [Multipart Streams](https://github.com/actix/examples/tree/master/forms/multipart)
|
||||||
- [MongoDB Integration](https://github.com/actix/examples/tree/master/databases/mongodb/)
|
- [Diesel Integration](https://github.com/actix/examples/tree/master/databases/diesel)
|
||||||
- [Postgres Integration](https://github.com/actix/examples/tree/master/databases/postgres/)
|
- [SQLite Integration](https://github.com/actix/examples/tree/master/databases/sqlite)
|
||||||
- [Rbatis Integration](https://github.com/actix/examples/tree/master/databases/rbatis/)
|
- [Postgres Integration](https://github.com/actix/examples/tree/master/databases/postgres)
|
||||||
- [Redis Integration](https://github.com/actix/examples/tree/master/databases/redis/)
|
- [Tera Templates](https://github.com/actix/examples/tree/master/templating/tera)
|
||||||
- [SQLite Integration](https://github.com/actix/examples/tree/master/databases/sqlite/)
|
- [Askama Templates](https://github.com/actix/examples/tree/master/templating/askama)
|
||||||
- [Simple WebSocket](https://github.com/actix/examples/tree/master/websockets/)
|
- [HTTPS using Rustls](https://github.com/actix/examples/tree/master/https-tls/rustls)
|
||||||
- [WebSocket Chat](https://github.com/actix/examples/tree/master/websockets/chat/)
|
- [HTTPS using OpenSSL](https://github.com/actix/examples/tree/master/https-tls/openssl)
|
||||||
- [Tera Templates](https://github.com/actix/examples/tree/master/templating/tera/)
|
- [Simple WebSocket](https://github.com/actix/examples/tree/master/websockets)
|
||||||
- [Askama Templates](https://github.com/actix/examples/tree/master/templating/askama/)
|
- [WebSocket Chat](https://github.com/actix/examples/tree/master/websockets/chat)
|
||||||
- [HTTPS using Rustls](https://github.com/actix/examples/tree/master/https-tls/rustls/)
|
|
||||||
- [HTTPS using OpenSSL](https://github.com/actix/examples/tree/master/https-tls/openssl/)
|
|
||||||
|
|
||||||
You may consider checking out [this directory](https://github.com/actix/examples/tree/master/) for more examples.
|
You may consider checking out [this directory](https://github.com/actix/examples/tree/master) for more examples.
|
||||||
|
|
||||||
## Benchmarks
|
## Benchmarks
|
||||||
|
|
||||||
@ -105,5 +103,4 @@ This project is licensed under either of the following licenses, at your option:
|
|||||||
|
|
||||||
## Code of Conduct
|
## Code of Conduct
|
||||||
|
|
||||||
Contribution to the actix-web repo is organized under the terms of the Contributor Covenant.
|
Contribution to the actix-web repo is organized under the terms of the Contributor Covenant. The Actix team promises to intervene to uphold that code of conduct.
|
||||||
The Actix team promises to intervene to uphold that code of conduct.
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
//! properties and pass them to a handler through request-local data.
|
//! properties and pass them to a handler through request-local data.
|
||||||
//!
|
//!
|
||||||
//! For an example of extracting a client TLS certificate, see:
|
//! For an example of extracting a client TLS certificate, see:
|
||||||
//! <https://github.com/actix/examples/tree/HEAD/security/rustls-client-cert>
|
//! <https://github.com/actix/examples/tree/master/https-tls/rustls-client-cert>
|
||||||
|
|
||||||
use std::{any::Any, io, net::SocketAddr};
|
use std::{any::Any, io, net::SocketAddr};
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
## Documentation & Resources
|
## Documentation & Resources
|
||||||
|
|
||||||
- [API Documentation](https://docs.rs/awc)
|
- [API Documentation](https://docs.rs/awc)
|
||||||
- [Example Project](https://github.com/actix/examples/tree/HEAD/security/awc_https)
|
- [Example Project](https://github.com/actix/examples/tree/master/https-tls/awc-https)
|
||||||
- Minimum Supported Rust Version (MSRV): 1.54
|
- Minimum Supported Rust Version (MSRV): 1.54
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
Loading…
Reference in New Issue
Block a user