From a2f74fa7d78957d41311d0b3973bf862cf5a3e3a Mon Sep 17 00:00:00 2001 From: asonix Date: Tue, 30 Jul 2019 17:14:57 -0500 Subject: [PATCH] Add matrix link --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c1a8534..1f3060b 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ A library for retrieving form data from Actix Web's multipart streams. It can stream uploaded files onto the filesystem (its main purpose), but it can also parse associated form data. -[documentation](https://docs.rs/actix-form-data) +- [Read the documentation on docs.rs](https://docs.rs/actix-form-data) +- [Find the crate on crates.io](https://crates.io/crates/actix-form-data) +- [Join the discussion on Matrix](https://matrix.to/#/!YIoRgrEUMubvazlYIH:asonix.dog?via=asonix.dog) ### Usage @@ -11,9 +13,9 @@ Add it to your dependencies. # Cargo.toml [dependencies] -actix-web = "1.0.0-beta.3" -actix-multipart = "0.1.0-beta.1" -actix-form-data = "0.4.0-beta.2" +actix-web = "1.0.0" +actix-multipart = "0.1.0" +actix-form-data = "0.4.0" ``` Require it in your project.