chore: use vendored openssl

This commit is contained in:
Richard Shiue 2023-08-23 13:58:56 +08:00 committed by Lucas.Xu
parent a0481e8020
commit 4d7c0a7c67
2 changed files with 2 additions and 2 deletions

View File

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

View File

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