Add OpenSSL library for API tests

This commit is contained in:
Pig Fang 2019-04-27 14:25:01 +08:00
parent 15f22dd10c
commit b5122c6044
2 changed files with 6 additions and 0 deletions

2
Cargo.lock generated
View File

@ -1040,6 +1040,8 @@ dependencies = [
name = "test"
version = "0.1.0"
dependencies = [
"openssl 0.10.20 (registry+https://github.com/rust-lang/crates.io-index)",
"openssl-sys 0.9.43 (registry+https://github.com/rust-lang/crates.io-index)",
"reqwest 0.9.15 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.90 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -12,3 +12,7 @@ doctest = false
reqwest = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[target.'cfg(unix)'.dev-dependencies]
openssl = "0.10"
openssl-sys = "0.9"