From dc06c08ee9dc3a96dae63585a18be92d7a0e732d Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 1 Jan 2020 21:57:07 +0100 Subject: [PATCH] Async redis branch has been merged --- README.md | 2 +- redis/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5954b43..acb6c1c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ A (possibly not exhaustive) list of adaptors for different backends: Backend | Adaptor Crate ------- | ------------- [tokio-postgres](https://github.com/sfackler/rust-postgres) | [bb8-postgres](https://crates.io/crates/bb8-postgres) -[redis forked from mitsuhiko by Marwes](https://github.com/Marwes/redis-rs/) | [bb8-redis](https://crates.io/crates/bb8-redis) +[redis (git master)](https://github.com/mitsuhiko/redis-rs) | [bb8-redis](https://crates.io/crates/bb8-redis) diff --git a/redis/Cargo.toml b/redis/Cargo.toml index e92597a..809bdbe 100644 --- a/redis/Cargo.toml +++ b/redis/Cargo.toml @@ -12,4 +12,4 @@ async-trait = "0.1" bb8 = { path = "../bb8" } futures = "0.3" tokio = "0.2" -redis = { git = "https://github.com/Marwes/redis-rs/", branch = "async_await_api" } +redis = { git = "https://github.com/mitsuhiko/redis-rs" }