From 16c85a95855b0182864022774672de9bd98e070e Mon Sep 17 00:00:00 2001 From: link2xt Date: Fri, 20 Feb 2026 19:03:14 +0000 Subject: [PATCH] chore(cargo): update async-native-tls from 0.5.0 to 0.6.0 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b6cc4a386..6251ce9f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -308,12 +308,12 @@ dependencies = [ [[package]] name = "async-native-tls" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9343dc5acf07e79ff82d0c37899f079db3534d99f189a1837c8e549c99405bec" +checksum = "37dd6b179962fe4048a6f81d4c0d7ed419a21fdf49204b4c6b04971693358e79" dependencies = [ "native-tls", - "thiserror 1.0.69", + "thiserror 2.0.18", "tokio", "url", ] diff --git a/Cargo.toml b/Cargo.toml index 79f624335..9483dfeac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ anyhow = { workspace = true } async-broadcast = "0.7.2" async-channel = { workspace = true } async-imap = { version = "0.11.1", default-features = false, features = ["runtime-tokio", "compress"] } -async-native-tls = { version = "0.5", default-features = false, features = ["runtime-tokio"] } +async-native-tls = { version = "0.6", default-features = false, features = ["runtime-tokio"] } async-smtp = { version = "0.10.2", default-features = false, features = ["runtime-tokio"] } async_zip = { version = "0.0.18", default-features = false, features = ["deflate", "tokio-fs"] } base64 = { workspace = true }