1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-11-22 17:41:11 +00:00

Fix links in README (#2653)

This commit is contained in:
Xavier Lange 2022-02-17 22:34:12 -05:00 committed by GitHub
parent 52f7d96358
commit f843776f36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,14 +77,18 @@ async fn main() -> std::io::Result<()> {
- [Application State](https://github.com/actix/examples/tree/master/basics/state/) - [Application State](https://github.com/actix/examples/tree/master/basics/state/)
- [JSON Handling](https://github.com/actix/examples/tree/master/json/json/) - [JSON Handling](https://github.com/actix/examples/tree/master/json/json/)
- [Multipart Streams](https://github.com/actix/examples/tree/master/forms/multipart/) - [Multipart Streams](https://github.com/actix/examples/tree/master/forms/multipart/)
- [Diesel Integration](https://github.com/actix/examples/tree/master/database_interactions/diesel/) - [Diesel Integration](https://github.com/actix/examples/tree/master/databases/diesel/)
- [r2d2 Integration](https://github.com/actix/examples/tree/master/database_interactions/r2d2/) - [MongoDB Integration](https://github.com/actix/examples/tree/master/databases/mongodb/)
- [Simple WebSocket](https://github.com/actix/examples/tree/master/websockets/websocket/) - [Postgres Integration](https://github.com/actix/examples/tree/master/databases/postgres/)
- [Tera Templates](https://github.com/actix/examples/tree/master/template_engines/tera/) - [Rbatis Integration](https://github.com/actix/examples/tree/master/databases/rbatis/)
- [Askama Templates](https://github.com/actix/examples/tree/master/template_engines/askama/) - [Redis Integration](https://github.com/actix/examples/tree/master/databases/redis/)
- [HTTPS using Rustls](https://github.com/actix/examples/tree/master/security/rustls/) - [SQLite Integration](https://github.com/actix/examples/tree/master/databases/sqlite/)
- [HTTPS using OpenSSL](https://github.com/actix/examples/tree/master/security/openssl/) - [Simple WebSocket](https://github.com/actix/examples/tree/master/websockets/)
- [WebSocket Chat](https://github.com/actix/examples/tree/master/websockets/chat/) - [WebSocket Chat](https://github.com/actix/examples/tree/master/websockets/chat/)
- [Tera Templates](https://github.com/actix/examples/tree/master/templating/tera/)
- [Askama Templates](https://github.com/actix/examples/tree/master/templating/askama/)
- [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.