Remove implicit dependency on openssl-sys (#1001) (#1005)

This commit is contained in:
Sven-Hendrik Haase 2020-04-27 09:49:05 +02:00 committed by GitHub
parent b96b187eca
commit e9b47dae59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 139 additions and 224 deletions

351
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -5,11 +5,15 @@ authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
edition = "2018"
[dependencies]
reqwest = { version = "0.10", features = ["blocking", "rustls-tls"] }
lazy_static = "1"
config = { path = "../config" }
errors = { path = "../errors" }
[dependencies.reqwest]
version = "0.10"
default-features = false
features = ["blocking", "rustls-tls"]
[dev-dependencies]
mockito = "0.23"

View file

@ -13,7 +13,6 @@ toml = "0.5"
csv = "1"
image = "0.23"
serde_json = "1.0"
reqwest = { version = "0.10", features = ["blocking"] }
url = "2"
errors = { path = "../errors" }
@ -22,5 +21,10 @@ library = { path = "../library" }
config = { path = "../config" }
imageproc = { path = "../imageproc" }
[dependencies.reqwest]
version = "0.10"
default-features = false
features = ["blocking", "rustls-tls"]
[dev-dependencies]
mockito = "0.25"