Skip to content

Commit

Permalink
fix: remove dependency on native-tls entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
petkodes committed May 24, 2024
1 parent 5d23313 commit c52edab
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 127 deletions.
153 changes: 29 additions & 124 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ panic = 'unwind'
opt-level = 3

[workspace.dependencies]
graphcast-sdk = "0.7.1"
graphcast-sdk = { git= "https://github.com/graphops/graphcast-sdk", branch = "petko/remove-dependency-on-native-tls" }
clap = { version = "4.4", features = [
"cargo",
"unstable-doc",
Expand Down
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ RUN apt-get update \
curl \
libpq-dev \
pkg-config \
libssl-dev \
clang \
build-essential \
libc6-dev \
Expand Down
2 changes: 1 addition & 1 deletion subgraph-radio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ tokio = { version = "1.28.1", features = ["full", "rt"] }
anyhow = "1.0"
graphql_client = "0.12.0"
serde_derive = "1.0"
reqwest = { version = "0.11.17", features = ["json"] }
reqwest = { version = "0.11.24", default-features = false, features = ["json", "rustls-tls"] }
thiserror = "1.0.40"
ethers = "2.0.4"
ethers-contract = "2.0.4"
Expand Down

0 comments on commit c52edab

Please sign in to comment.