Switch reqwest to rustls, bump Rust to 1.85
All checks were successful
ci/woodpecker/push/deploy Pipeline was successful

native-tls 0.2.17 fails to compile with Rust 1.84+ (TLSv1.3
exhaustive match). Using rustls avoids openssl dependency entirely.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Mikhail Kilin
2026-02-18 21:28:21 +03:00
parent 22a16affa5
commit c13dfa5b83
3 changed files with 179 additions and 517 deletions

View File

@@ -1,5 +1,5 @@
# Этап сборки
FROM rust:1.84 as builder
FROM rust:1.85 as builder
WORKDIR /app
COPY . .
RUN cargo build --release