Skip to content

Commit

Permalink
Upgrade to ntex 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Dec 30, 2021
1 parent 6f98ff7 commit ecbaa7a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## [0.3.0] - 2021-12-30

* Upgrade to ntex 0.5.0

## [0.3.0-b.3] - 2021-12-25

* Add RedisConnector::boxed_connector()
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-redis"
version = "0.3.0-b.4"
version = "0.3.0"
authors = ["ntex contributors <[email protected]>"]
description = "Redis client"
documentation = "https://docs.rs/ntex-redis"
Expand All @@ -21,7 +21,7 @@ openssl = ["ntex/openssl"]
rustls = ["ntex/rustls"]

[dependencies]
ntex = "0.5.0-b.4"
ntex = "0.5.0"
itoa = "0.4.5"
btoi = "0.4.2"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::collections::VecDeque;
use std::{cell::RefCell, fmt, future::Future, pin::Pin, rc::Rc, task::Context, task::Poll};

use ntex::io::{IoBoxed, IoRef, OnDisconnect, RecvError};
use ntex::io::{utils::OnDisconnect, IoBoxed, IoRef, RecvError};
use ntex::util::{poll_fn, ready, Either, Ready};
use ntex::{channel::pool, service::Service};

Expand Down
2 changes: 1 addition & 1 deletion src/connector.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::future::Future;

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

#[cfg(feature = "openssl")]
Expand Down

0 comments on commit ecbaa7a

Please sign in to comment.