Skip to content

Commit

Permalink
chore: use vendored openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
richardshiue authored and LucasXu0 committed Aug 23, 2023
1 parent a0481e8 commit 4d7c0a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/rust-lib/flowy-error/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion frontend/rust-lib/flowy-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit 4d7c0a7

Please sign in to comment.