Ver código fonte

chore: use vendored openssl

Richard Shiue 1 ano atrás
pai
commit
4d7c0a7c67

+ 1 - 1
frontend/rust-lib/flowy-error/Cargo.toml

@@ -16,7 +16,7 @@ lib-dispatch = { path = "../lib-dispatch", optional = true }
 serde_json = {version = "1.0", optional = true}
 serde_repr = { version = "0.1" }
 serde = "1.0"
-reqwest = { version = "0.11.14", optional = true }
+reqwest = { version = "0.11.14", optional = true, features = ["native-tls-vendored"] }
 http-error-code = { git = "https://github.com/AppFlowy-IO/AppFlowy-Server", branch = "refactor/appflowy_server", optional = true }
 flowy-sqlite = { path = "../flowy-sqlite", optional = true}
 r2d2 = { version = "0.8", optional = true}

+ 1 - 1
frontend/rust-lib/flowy-server/Cargo.toml

@@ -9,7 +9,7 @@ edition = "2021"
 tracing = { version = "0.1" }
 futures = "0.3.26"
 futures-util = "0.3.26"
-reqwest = "0.11.14"
+reqwest = { version = "0.11.14", features = ["native-tls-vendored"] }
 hyper = "0.14"
 config = { version = "0.10.1", default-features = false, features = ["yaml"] }
 serde = { version = "1.0", features = ["derive"] }