From f2f3695cfbaedb17e4125da13ddb2ffb02a0e660 Mon Sep 17 00:00:00 2001 From: Zack Fu Zi Xiang Date: Thu, 20 Jun 2024 12:32:51 +0800 Subject: [PATCH] chore: try use stream feature flag --- Cargo.toml | 2 +- libs/client-api/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ff0b60b5..a1799323 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ secrecy.workspace = true rand = { version = "0.8", features = ["std_rng"] } anyhow = "1.0.79" thiserror = "1.0.56" -reqwest = { workspace = true, features = ["json", "rustls-tls", "cookies"] } +reqwest = { workspace = true, features = ["json", "rustls-tls", "cookies", "stream"] } unicode-segmentation = "1.10" lazy_static.workspace = true fancy-regex = "0.11.0" diff --git a/libs/client-api/Cargo.toml b/libs/client-api/Cargo.toml index 791116d0..dc1f0f53 100644 --- a/libs/client-api/Cargo.toml +++ b/libs/client-api/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" crate-type = ["cdylib", "rlib"] [dependencies] -reqwest = { version = "0.11.27", features = ["stream", "json"] } +reqwest = { workspace = true } anyhow = "1.0.79" serde_repr = "0.1.18" gotrue = { path = "../gotrue" }