From 874fc83cd2f8c9c483cef53619a989ccd1e80920 Mon Sep 17 00:00:00 2001 From: Erik Micheel Date: Mon, 17 Mar 2025 11:04:46 +0100 Subject: [PATCH 1/2] chore: striped away the openssl dependency and use rustls instead Signed-off-by: Erik Micheel --- crates/flagd/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/flagd/Cargo.toml b/crates/flagd/Cargo.toml index 10b57ca..0cfaed4 100644 --- a/crates/flagd/Cargo.toml +++ b/crates/flagd/Cargo.toml @@ -47,7 +47,7 @@ serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } lru = "0.13" futures = "0.3" -reqwest = { version = "0.12", features = ["json", "stream"] } +reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls"] } tracing = "0.1" tracing-subscriber = "0.3" anyhow = "1.0.95" From 886d62e4d89640a81437dbd8bae4f51c506715a1 Mon Sep 17 00:00:00 2001 From: Erik Micheel Date: Mon, 17 Mar 2025 11:27:30 +0100 Subject: [PATCH 2/2] fix: increase MSRV to meta version 1.83 Signed-off-by: Erik Micheel --- crates/flagd/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/flagd/Cargo.toml b/crates/flagd/Cargo.toml index 0cfaed4..ba5172e 100644 --- a/crates/flagd/Cargo.toml +++ b/crates/flagd/Cargo.toml @@ -2,7 +2,7 @@ name = "open-feature-flagd" version = "0.0.4" edition = "2021" -rust-version = "1.80.1" # MSRV +rust-version = "1.83" # MSRV description = "The official flagd provider for OpenFeature." documentation = "https://docs.rs/open-feature-flagd" readme = "README.md"