From 69f82a816465fd7e225f424255808bac78a07181 Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Wed, 24 Jun 2026 16:18:16 -0400 Subject: [PATCH] fix: Bump launchdarkly-sdk-transport to 0.1.4 transport 0.1.4 requires hyper-http-proxy 1.1.1, which dropped the unmaintained rustls-pemfile crate (RUSTSEC-2025-0134). Raising the floor guarantees the advisory-free transport for fresh dependency resolution. Fixes #176 --- contract-tests/Cargo.toml | 2 +- launchdarkly-server-sdk/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contract-tests/Cargo.toml b/contract-tests/Cargo.toml index dbee9f8..47f34fe 100644 --- a/contract-tests/Cargo.toml +++ b/contract-tests/Cargo.toml @@ -10,7 +10,7 @@ actix = "0.13.0" actix-web = "4.2.1" env_logger = "0.10.0" eventsource-client = { version = "0.17.0" } -launchdarkly-sdk-transport = { version = "0.1.0" } +launchdarkly-sdk-transport = { version = "0.1.4" } log = "0.4.14" launchdarkly-server-sdk = { path = "../launchdarkly-server-sdk/", default-features = false, features = ["event-compression"]} serde = { version = "1.0.132", features = ["derive"] } diff --git a/launchdarkly-server-sdk/Cargo.toml b/launchdarkly-server-sdk/Cargo.toml index bf3a574..481d46c 100644 --- a/launchdarkly-server-sdk/Cargo.toml +++ b/launchdarkly-server-sdk/Cargo.toml @@ -21,7 +21,7 @@ chrono = "0.4.19" crossbeam-channel = "0.5.1" data-encoding = "2.3.2" eventsource-client = { version = "0.17.0" } -launchdarkly-sdk-transport = { version = "0.1.0" } +launchdarkly-sdk-transport = { version = "0.1.4" } futures = "0.3.12" log = "0.4.14" lru = { version = "0.16.3", default-features = false }