From edd6681143a69de343dfd4f43483f12cc2c3b5e8 Mon Sep 17 00:00:00 2001 From: Tyagiquamar Date: Sat, 5 Sep 2026 15:11:09 +0530 Subject: [PATCH] fix(deps): bump hyper-rustls constraint to >=0.25 in libsql (#2273) --- libsql/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsql/Cargo.toml b/libsql/Cargo.toml index e8a7e0f909..f0f3face51 100644 --- a/libsql/Cargo.toml +++ b/libsql/Cargo.toml @@ -18,7 +18,7 @@ tokio = { version = "1.29.1", features = ["sync"], optional = true } tokio-util = { version = "0.7", features = ["io-util", "codec"], optional = true } parking_lot = { version = "0.12.1", optional = true } hyper = { version = "0.14", features = ["client", "http1", "http2", "stream", "runtime"], optional = true } -hyper-rustls = { version = "0.25", features = ["webpki-roots"], optional = true } +hyper-rustls = { version = ">=0.25", features = ["webpki-roots"], optional = true } base64 = { version = "0.21", optional = true } serde = { version = "1", features = ["derive"], optional = true } serde_json = { version = "1", features = ["float_roundtrip"], optional = true }