1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-10 17:29:36 +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/)
- [JSON Handling](https://github.com/actix/examples/tree/master/json/json/)
- [Multipart Streams](https://github.com/actix/examples/tree/master/forms/multipart/)
- [Diesel Integration](https://github.com/actix/examples/tree/master/database_interactions/diesel/)
- [r2d2 Integration](https://github.com/actix/examples/tree/master/database_interactions/r2d2/)
- [Simple WebSocket](https://github.com/actix/examples/tree/master/websockets/websocket/)
- [Tera Templates](https://github.com/actix/examples/tree/master/template_engines/tera/)
- [Askama Templates](https://github.com/actix/examples/tree/master/template_engines/askama/)
- [HTTPS using Rustls](https://github.com/actix/examples/tree/master/security/rustls/)
- [HTTPS using OpenSSL](https://github.com/actix/examples/tree/master/security/openssl/)
- [Diesel Integration](https://github.com/actix/examples/tree/master/databases/diesel/)
- [MongoDB Integration](https://github.com/actix/examples/tree/master/databases/mongodb/)
- [Postgres Integration](https://github.com/actix/examples/tree/master/databases/postgres/)
- [Rbatis Integration](https://github.com/actix/examples/tree/master/databases/rbatis/)
- [Redis Integration](https://github.com/actix/examples/tree/master/databases/redis/)
- [SQLite Integration](https://github.com/actix/examples/tree/master/databases/sqlite/)
- [Simple WebSocket](https://github.com/actix/examples/tree/master/websockets/)
- [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.