2020-08-10 18:25:06 +00:00
|
|
|
diff --git a/Cargo.lock b/Cargo.lock
|
2021-05-06 09:21:40 +00:00
|
|
|
index 5440d72..6e173fa 100644
|
2020-08-10 18:25:06 +00:00
|
|
|
--- a/Cargo.lock
|
|
|
|
+++ b/Cargo.lock
|
2021-05-06 09:21:40 +00:00
|
|
|
@@ -774,15 +774,6 @@ version = "0.1.2"
|
2020-08-10 18:25:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-05-06 09:21:40 +00:00
|
|
|
checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
|
2020-08-10 18:25:06 +00:00
|
|
|
|
|
|
|
-[[package]]
|
|
|
|
-name = "openssl-src"
|
2021-05-06 09:21:40 +00:00
|
|
|
-version = "111.11.0+1.1.1h"
|
2020-08-10 18:25:06 +00:00
|
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-05-06 09:21:40 +00:00
|
|
|
-checksum = "380fe324132bea01f45239fadfec9343adb044615f29930d039bec1ae7b9fa5b"
|
2020-08-10 18:25:06 +00:00
|
|
|
-dependencies = [
|
2021-05-06 09:21:40 +00:00
|
|
|
- "cc",
|
2020-08-10 18:25:06 +00:00
|
|
|
-]
|
|
|
|
-
|
|
|
|
[[package]]
|
|
|
|
name = "openssl-sys"
|
2021-05-06 09:21:40 +00:00
|
|
|
version = "0.9.58"
|
|
|
|
@@ -792,7 +783,6 @@ dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
- "openssl-src",
|
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
2020-08-10 18:25:06 +00:00
|
|
|
]
|
|
|
|
diff --git a/Cargo.toml b/Cargo.toml
|
2021-05-06 09:21:40 +00:00
|
|
|
index 4d319f2..6f4d0e5 100644
|
2020-08-10 18:25:06 +00:00
|
|
|
--- a/Cargo.toml
|
|
|
|
+++ b/Cargo.toml
|
2021-05-06 09:21:40 +00:00
|
|
|
@@ -21,8 +21,8 @@ colored = "2.0"
|
2020-08-10 18:25:06 +00:00
|
|
|
dialoguer = "0.6"
|
2021-05-06 09:21:40 +00:00
|
|
|
dirs = "3.0"
|
2020-08-10 18:25:06 +00:00
|
|
|
fs2 = "0.4"
|
|
|
|
-isahc = { version = "0.9", features = ["static-ssl"] }
|
2021-05-06 09:21:40 +00:00
|
|
|
-curl = {version = "0.4", features = ["static-curl", "static-ssl", "force-system-lib-on-osx", "http2"]}
|
2020-08-10 18:25:06 +00:00
|
|
|
+isahc = "0.9"
|
2021-05-06 09:21:40 +00:00
|
|
|
+curl = {version = "0.4", features = ["force-system-lib-on-osx", "http2"]}
|
|
|
|
ctrlc = "3.1"
|
|
|
|
console = "0.12"
|
2020-08-10 18:25:06 +00:00
|
|
|
|