From 050504fbe583745516387084f053fff0667271dd Mon Sep 17 00:00:00 2001 From: ozwaldorf Date: Fri, 3 Mar 2023 15:16:00 -0500 Subject: [PATCH] fix(libp2p-quic): pin and update tls prerelease dep Pin libp2p-quic's tls prerelease dependency and update it Pull-Request: #3548. --- transports/quic/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transports/quic/Cargo.toml b/transports/quic/Cargo.toml index b059edceca6..e0d5730f365 100644 --- a/transports/quic/Cargo.toml +++ b/transports/quic/Cargo.toml @@ -15,7 +15,7 @@ futures = "0.3.26" futures-timer = "3.0.2" if-watch = "3.0.0" libp2p-core = { version = "0.39.0", path = "../../core" } -libp2p-tls = { version = "0.1.0-alpha.1", path = "../tls" } +libp2p-tls = { version = "=0.1.0-alpha.2", path = "../tls" } log = "0.4" parking_lot = "0.12.0" quinn-proto = { version = "0.9.0", default-features = false, features = ["tls-rustls"] }