From d6ad253882a6c066e0c673ff64e6554a37bb3487 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 10 May 2024 16:12:19 -0400 Subject: [PATCH] chore: fix publish by pinning rustls to 0.21.11 --- Cargo.lock | 4 ++-- Cargo.toml | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0da1ea0dbd0e3b..52589eef9fb2b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5458,9 +5458,9 @@ dependencies = [ [[package]] name = "rustls-tokio-stream" -version = "0.2.23" +version = "0.2.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c478c030dfd68498e6c59168d9eec4f8bead33152a5f3095ad4bdbdcea09d466" +checksum = "fd707225bb670bcd2876886bb571753d1ce03a9cedfa2e629a79984ca9a93cfb" dependencies = [ "futures", "rustls", diff --git a/Cargo.toml b/Cargo.toml index 7b4f77384a8335..0527e235598947 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -148,9 +148,10 @@ regex = "^1.7.0" reqwest = { version = "=0.11.20", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli", "socks", "json"] } # pinned because of https://github.com/seanmonstar/reqwest/pull/1955 ring = "^0.17.0" rusqlite = { version = "=0.29.0", features = ["unlock_notify", "bundled"] } -rustls = "0.21.11" +# pinned because it was causing issues on cargo publish +rustls = "=0.21.11" rustls-pemfile = "1.0.0" -rustls-tokio-stream = "=0.2.23" +rustls-tokio-stream = "=0.2.24" rustls-webpki = "0.101.4" rustyline = "=13.0.0" saffron = "=0.1.0"