Skip to content

Commit

Permalink
trying direct openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
tarekziade committed Oct 30, 2023
1 parent c819d6f commit 1fe2553
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
architecture: x64
- name: Install protoc and libssl
run: |
sudo apt-get install -y protobuf-compiler openssl1.0 libssl1.0.0 libssl1.0-dev
sudo apt-get install -y protobuf-compiler openssl libssl libssl-dev
- name: Set PKG_CONFIG_PATH
run: echo "PKG_CONFIG_PATH=/usr/lib/pkgconfig" >> $GITHUB_ENV
- name: install cpanm and multiple modules
Expand Down
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ tokio = "1.33.0"
# This is a workaround for building the client in manylinux container. These dependencies
# are not directly used by this crate but the cargo will add the following features to the
# indirected dependencies in order to vender the OpenSSL.
reqwest = { version = "0.11", default-features = false, features = ["native-tls-vendored"] }
# grpcio = { version = "0.9", features = ["openssl-vendored"], default-features = false }
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-native-roots"] }

[lib]
crate-type = ["cdylib"]
Expand Down

0 comments on commit 1fe2553

Please sign in to comment.