chore: try use stream feature flag

This commit is contained in:
Zack Fu Zi Xiang 2024-06-20 12:32:51 +08:00
parent b525e333f0
commit f2f3695cfb
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -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"

View File

@ -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" }