Skip to content

Commit ecbaa7a

Browse files
committed
Upgrade to ntex 0.5.0
1 parent 6f98ff7 commit ecbaa7a

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes
22

3+
## [0.3.0] - 2021-12-30
4+
5+
* Upgrade to ntex 0.5.0
6+
37
## [0.3.0-b.3] - 2021-12-25
48

59
* Add RedisConnector::boxed_connector()

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ntex-redis"
3-
version = "0.3.0-b.4"
3+
version = "0.3.0"
44
authors = ["ntex contributors <[email protected]>"]
55
description = "Redis client"
66
documentation = "https://docs.rs/ntex-redis"
@@ -21,7 +21,7 @@ openssl = ["ntex/openssl"]
2121
rustls = ["ntex/rustls"]
2222

2323
[dependencies]
24-
ntex = "0.5.0-b.4"
24+
ntex = "0.5.0"
2525
itoa = "0.4.5"
2626
btoi = "0.4.2"
2727
log = "0.4"

src/client.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::collections::VecDeque;
22
use std::{cell::RefCell, fmt, future::Future, pin::Pin, rc::Rc, task::Context, task::Poll};
33

4-
use ntex::io::{IoBoxed, IoRef, OnDisconnect, RecvError};
4+
use ntex::io::{utils::OnDisconnect, IoBoxed, IoRef, RecvError};
55
use ntex::util::{poll_fn, ready, Either, Ready};
66
use ntex::{channel::pool, service::Service};
77

src/connector.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::future::Future;
22

33
use ntex::connect::{self, Address, Connect, Connector};
4-
use ntex::io::{Boxed, IoBoxed};
4+
use ntex::io::{utils::Boxed, IoBoxed};
55
use ntex::{service::Service, time::Seconds, util::ByteString, util::PoolId, util::PoolRef};
66

77
#[cfg(feature = "openssl")]

0 commit comments

Comments
 (0)