From 1d3e5b316008bcde9edd0d744ffd6a486475fccc Mon Sep 17 00:00:00 2001 From: Jacob Rothstein Date: Sat, 29 May 2021 13:55:22 -0700 Subject: [PATCH] document framework implementations as well --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9d437ff..e595e5c 100644 --- a/README.md +++ b/README.md @@ -41,17 +41,17 @@ -## Installation -```sh -$ cargo add async-session -``` - -## Available implementations +## Available session stores * [async-sqlx-session](https://crates.io/crates/async-sqlx-session) postgres & sqlite * [async-redis-session](https://crates.io/crates/async-redis-session) * [async-mongodb-session](https://crates.io/crates/async-mongodb-session) +## Framework implementations + +* [tide::sessions](https://docs.rs/tide/latest/tide/sessions/index.html) +* [warp-sessions](https://docs.rs/warp-sessions/1.0.14/warp_sessions/) + ## Safety This crate uses ``#![deny(unsafe_code)]`` to ensure everything is implemented in 100% Safe Rust.