Skip to content

Commit

Permalink
fix: disable openssl in example reqwest_rustls
Browse files Browse the repository at this point in the history
  • Loading branch information
fMeow committed Mar 28, 2021
1 parent 3f667c3 commit 375ecf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/reqwest_rustls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ edition = "2018"
# but DO NOT add `reqwest_async`, `reqwest_blocking` or `surf_async`.
arangors = { path = "../../", default-features = false }
anyhow = "1"
tokio = {version = "1", features = ["macros", "rt-multi-thread"]}
tokio = { version = "1", features = [ "macros", "rt-multi-thread" ] }

# required dependencies for ReqwestClient
reqwest = {version = "0.11", features = [ "gzip", "json", "rustls-tls" ]}
reqwest = { version = "0.11", features = [ "gzip", "json", "rustls-tls" ], default-features = false }
async-trait = "0.1"
http = "0.2"

0 comments on commit 375ecf4

Please sign in to comment.