Skip to content

Commit

Permalink
enable tls for reqwest
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkirk authored and pka committed Aug 22, 2023
1 parent e62f72a commit b024cfc
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,11 @@ default = ["reqwest"]

[dependencies]
byteorder = "1.4.2"
# Minimal dependencices without SSL support.
reqwest = { version = "0.11.0", default-features = false, optional = true }
reqwest = { version = "0.11.0", default-features = false, features = ["default-tls"], optional = true }
bytes = { version = "1.0.1" }
thiserror = "1.0"
log = "0.4.13"
async-trait = "0.1.51"

[dev-dependencies]
# One test needs SSL support; just use the default system bindings for that.
reqwest = { version = "0.11.0", default-features = true }
tokio = { version = "1.0.2", default-features = false, features = ["rt-multi-thread", "macros"] }

0 comments on commit b024cfc

Please sign in to comment.