mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 15:51:06 +01:00
fix redis
This commit is contained in:
parent
323d01fcca
commit
0ac068a14d
@ -1,11 +1,11 @@
|
||||
# Changes
|
||||
|
||||
## Unreleased - 2021-xx-xx
|
||||
- Update `actix-web` dependency to `4.0.0-rc.1`.
|
||||
|
||||
|
||||
## 0.7.0-beta.5 - 2022-02-03
|
||||
- Bump `prost` version to 0.9.
|
||||
- Update `prost` dependency to `0.9`.
|
||||
- Update `actix-web` dependency to `4.0.0-rc.1`.
|
||||
|
||||
|
||||
## 0.7.0-beta.4 - 2021-12-29
|
||||
|
@ -30,6 +30,7 @@ web = [
|
||||
|
||||
[dependencies]
|
||||
actix = { version = "0.12.0", default-features = false }
|
||||
actix-rt = { version = "2.1", default-features = false }
|
||||
actix-service = "2.0.0"
|
||||
actix-tls = { version = "3.0.0-rc.2", default-features = false, features = ["connect"] }
|
||||
|
||||
|
@ -2,9 +2,9 @@ use std::collections::VecDeque;
|
||||
use std::io;
|
||||
|
||||
use actix::prelude::*;
|
||||
use actix_rt::net::TcpStream;
|
||||
use actix_service::boxed::{self, BoxService};
|
||||
use actix_tls::connect::{ConnectError, ConnectInfo, Connection, ConnectorService};
|
||||
use actix_web::rt::net::TcpStream;
|
||||
use backoff::backoff::Backoff;
|
||||
use backoff::ExponentialBackoff;
|
||||
use log::{error, info, warn};
|
||||
|
Loading…
Reference in New Issue
Block a user