Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Commit

Permalink
Turn off default reqwest features to avoid OpenSSL dependency errors …
Browse files Browse the repository at this point in the history
…(use RusTLS backend instead)
  • Loading branch information
anish-dfg committed Oct 13, 2024
1 parent 02b9abd commit 2e9dd6d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 183 deletions.
180 changes: 0 additions & 180 deletions Cargo.lock

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

5 changes: 4 additions & 1 deletion scipio-airtable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ anyhow = "1.0.89"
chrono = { version = "0.4.38", features = ["serde"] }
derive_builder = "0.20.2"
dotenvy = "0.15.7"
reqwest = { version = "0.12.8", features = ["json", "rustls-tls"] }
reqwest = { version = "0.12.8", default-features = false, features = [
"json",
"rustls-tls",
] }
reqwest-middleware = "0.3.3"
reqwest-retry = "0.6.1"
scipio-macros = { path = "../scipio-macros" }
Expand Down
5 changes: 4 additions & 1 deletion scipio-sendgrid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ anyhow = "1.0.89"
chrono = { version = "0.4.38", features = ["serde"] }
derive_builder = "0.20.2"
dotenvy = "0.15.7"
reqwest = { version = "0.12.8", features = ["json", "rustls-tls"] }
reqwest = { version = "0.12.8", default-features = false, features = [
"json",
"rustls-tls",
] }
reqwest-middleware = "0.3.3"
reqwest-retry = "0.6.1"
serde = { version = "1.0.210", features = ["derive"] }
Expand Down
5 changes: 4 additions & 1 deletion scipio-workspace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ dotenvy = "0.15.7"
jsonwebtoken = "9.3.0"
log = "0.4.22"
rand = "0.8.5"
reqwest = { version = "0.12.8", features = ["json", "rustls-tls"] }
reqwest = { version = "0.12.8", default-features = false, features = [
"json",
"rustls-tls",
] }
reqwest-middleware = "0.3.3"
reqwest-retry = "0.6.1"
serde = { version = "1.0.210", features = ["derive"] }
Expand Down

0 comments on commit 2e9dd6d

Please sign in to comment.