From bf5b444ff7cbd107019aeb58f5e9d44b29bfc98f Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 3 Apr 2023 10:34:14 +0200 Subject: [PATCH] Upgrade tokio-rustls to 0.24 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ab7a177..6459e06 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,9 +17,9 @@ chrono = { version = "0.4.23", features = ["serde"] } instant-xml = { version = "0.3", features = ["chrono"] } serde = { version = "1.0", features = ["derive"] } tokio = { version = "1.0", features = ["io-util", "net", "time"] } -tokio-rustls = { version = "0.23", optional = true } +tokio-rustls = { version = "0.24", optional = true } tracing = "0.1.29" -webpki-roots = "0.22.1" +webpki-roots = "0.23" [dev-dependencies] regex = "1.5"