mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-11 20:00:29 +01:00
[PR #153] [MERGED] Support TLS 1.3 #88
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/mountain-loop/yaak/pull/153
Author: @gschier
Created: 1/9/2025
Status: ✅ Merged
Merged: 1/11/2025
Merged by: @gschier
Base:
master← Head:tls13📝 Commits (6)
6c35636Support TLS 1.3 via rustls-tls-native-roots1a3d3feUpgrade reqwest7484b71Merge branch 'master' into tls1370f2345Use rust-platform-verifier6ccae01Update depefdef9bMerge branch 'master' into tls13📊 Changes
3 files changed (+158 additions, -46 deletions)
View changed files
📝
src-tauri/Cargo.lock(+130 -36)📝
src-tauri/Cargo.toml(+4 -2)📝
src-tauri/src/http_request.rs(+24 -8)📄 Description
Closes #85
As mentioned in #85, I didn't want to transition to the Reqwest
rustls-tlsfeature (overnative-tls) because I think it's valuable for Yaak to inherit the OS-native root certificates.However, I discovered that Reqwest has a
rustls-tls-native-certsfeature, which usesrustlsAND pulls certs from the OS. Perfect!Here's a test of it working with https://tls13.1d.pw.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.