sync: mailcore 0.2.1-beta

This commit is contained in:
Eugen Kaparulin
2026-06-22 21:54:48 +03:00
parent c76d1197d0
commit c48a14d4e8
10 changed files with 827 additions and 130 deletions

View File

@@ -22,7 +22,8 @@ webpki-roots = "0.26"
mail-parser = "0.9"
mail-builder = "0.3"
# HTTP Client
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
base64 = "0.22"
sha1 = "0.10"
zbase32 = "0.1"
@@ -50,7 +51,7 @@ thiserror = "1"
# Logging
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
futures = "0.3.31"
chrono = "0.4.43"
# Removed native-tls dependencies for better cross-platform compatibility
@@ -63,6 +64,7 @@ core-foundation = "0.9"
[target.'cfg(target_os = "android")'.dependencies]
jni = "0.21"
tracing-android = "0.2"
[dev-dependencies]
tokio-test = "0.4"