parent
b96b187eca
commit
e9b47dae59
351
Cargo.lock
generated
351
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -5,11 +5,15 @@ authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
reqwest = { version = "0.10", features = ["blocking", "rustls-tls"] }
|
|
||||||
lazy_static = "1"
|
lazy_static = "1"
|
||||||
|
|
||||||
config = { path = "../config" }
|
config = { path = "../config" }
|
||||||
errors = { path = "../errors" }
|
errors = { path = "../errors" }
|
||||||
|
|
||||||
|
[dependencies.reqwest]
|
||||||
|
version = "0.10"
|
||||||
|
default-features = false
|
||||||
|
features = ["blocking", "rustls-tls"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
mockito = "0.23"
|
mockito = "0.23"
|
||||||
|
|
|
@ -13,7 +13,6 @@ toml = "0.5"
|
||||||
csv = "1"
|
csv = "1"
|
||||||
image = "0.23"
|
image = "0.23"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
reqwest = { version = "0.10", features = ["blocking"] }
|
|
||||||
url = "2"
|
url = "2"
|
||||||
|
|
||||||
errors = { path = "../errors" }
|
errors = { path = "../errors" }
|
||||||
|
@ -22,5 +21,10 @@ library = { path = "../library" }
|
||||||
config = { path = "../config" }
|
config = { path = "../config" }
|
||||||
imageproc = { path = "../imageproc" }
|
imageproc = { path = "../imageproc" }
|
||||||
|
|
||||||
|
[dependencies.reqwest]
|
||||||
|
version = "0.10"
|
||||||
|
default-features = false
|
||||||
|
features = ["blocking", "rustls-tls"]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
mockito = "0.25"
|
mockito = "0.25"
|
||||||
|
|
Loading…
Reference in a new issue