fix(deps): use rustls-tls for reqwest to fix openssl error on android target
This commit is contained in:
+12
-1
@@ -11,7 +11,18 @@ tokio = { version = "1.36.0", features = ["full"] }
|
|||||||
axum = "0.8.1"
|
axum = "0.8.1"
|
||||||
axum-server = "0.7.1"
|
axum-server = "0.7.1"
|
||||||
tower-http = "0.6.2"
|
tower-http = "0.6.2"
|
||||||
reqwest = "0.12.12"
|
reqwest = { version = "0.12", default-features = false, features = [
|
||||||
|
"json",
|
||||||
|
"multipart",
|
||||||
|
"cookies",
|
||||||
|
"gzip",
|
||||||
|
"brotli",
|
||||||
|
"deflate",
|
||||||
|
"rustls-tls",
|
||||||
|
"charset",
|
||||||
|
"http2",
|
||||||
|
"macos-system-configuration",
|
||||||
|
] }
|
||||||
|
|
||||||
# JSON
|
# JSON
|
||||||
serde = { version = "1.0.197", features = ["derive"] }
|
serde = { version = "1.0.197", features = ["derive"] }
|
||||||
|
|||||||
Reference in New Issue
Block a user