Skip to content

Commit 899b0a1

Browse files
committed
v0.32.1
1 parent b255267 commit 899b0a1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tcp-stream"
3-
version = "0.32.0"
3+
version = "0.32.1"
44
authors = ["Marc-Antoine Perennou <Marc-Antoine@Perennou.com>"]
55
edition = "2024"
66
description = "std::net::TcpStream on steroids"
@@ -52,7 +52,7 @@ version = "^0.2"
5252
optional = true
5353

5454
[dependencies.async-rs]
55-
version = "^0.6"
55+
version = "^0.6.1"
5656
default-features = false
5757
optional = true
5858

src/futures.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ impl<S: AsyncRead + AsyncWrite + Send + Unpin + 'static> AsyncTcpStream<S> {
3636
/// Wrapper around `reactor_trait::TcpReactor::connect`
3737
pub async fn connect<
3838
R: Reactor<TcpStream = S> + Sync + 'static,
39-
A: AsyncToSocketAddrs + Send + 'static,
39+
A: AsyncToSocketAddrs + Send,
4040
>(
4141
reactor: &R,
4242
addr: A,

0 commit comments

Comments
 (0)