From 28a2c8052ce5fa2abbd4ce385f6ee2f50cbfb770 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 26 Oct 2022 13:01:37 +0200 Subject: [PATCH] quinn: bump dependency on tokio to 1.13 We now use `UdpSocket::poll_send_ready()` and `UdpSocket::poll_recv_ready()`. --- quinn/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quinn/Cargo.toml b/quinn/Cargo.toml index 7ed26792c..e85886e94 100644 --- a/quinn/Cargo.toml +++ b/quinn/Cargo.toml @@ -42,7 +42,7 @@ proto = { package = "quinn-proto", path = "../quinn-proto", version = "0.9", def rustls = { version = "0.20.3", default-features = false, features = ["quic"], optional = true } thiserror = "1.0.21" tracing = "0.1.10" -tokio = { version = "1.0.1", features = ["sync"] } +tokio = { version = "1.13.0", features = ["sync"] } udp = { package = "quinn-udp", path = "../quinn-udp", version = "0.3" } webpki = { version = "0.22", default-features = false, optional = true }