From 2e6ea244235f861b70ec156e0710c72384865b30 Mon Sep 17 00:00:00 2001 From: totodore Date: Thu, 6 Aug 2026 10:25:29 +0200 Subject: [PATCH 1/3] chore(deps): bump reqwest to 0.13 --- .gitignore | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1b26c78..9ad714d 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ #/target Cargo.lock +.zed diff --git a/Cargo.toml b/Cargo.toml index 923c0e1..3e5490a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ keywords = ["Flagsmith", "feature-flag", "remote-config"] [dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -reqwest = { version = "0.11", features = ["json", "blocking"] } +reqwest = { version = "0.13", features = ["json", "blocking"], default-features = false } url = "2.1" chrono = { version = "0.4" } log = "0.4" From 06b2728023dbe00c745e75a9cd4955590d6aafd7 Mon Sep 17 00:00:00 2001 From: totodore Date: Thu, 6 Aug 2026 10:36:43 +0200 Subject: [PATCH 2/3] fix: add MSRV --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3e5490a..5683e05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,13 +10,14 @@ repository = "https://github.com/Flagsmith/flagsmith-rust-client" readme = "README.md" categories = ["config", "api-bindings"] keywords = ["Flagsmith", "feature-flag", "remote-config"] +rust-version = "1.85.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -reqwest = { version = "0.13", features = ["json", "blocking"], default-features = false } +reqwest = { version = "0.13", features = ["json", "blocking"] } url = "2.1" chrono = { version = "0.4" } log = "0.4" From c7c37290f61b771e69d41aa56168bb855a243a44 Mon Sep 17 00:00:00 2001 From: tprevot Date: Mon, 10 Aug 2026 14:39:34 +0200 Subject: [PATCH 3/3] fix: remove MSRV in Cargo.toml, will be added later with an appropriate workflow. --- Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5683e05..5cf558b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,6 @@ repository = "https://github.com/Flagsmith/flagsmith-rust-client" readme = "README.md" categories = ["config", "api-bindings"] keywords = ["Flagsmith", "feature-flag", "remote-config"] -rust-version = "1.85.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html