diff --git a/Cargo.lock b/Cargo.lock index f924a19..1ee19ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2065,6 +2065,15 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" +[[package]] +name = "openssl-src" +version = "300.2.3+3.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cff92b6f71555b61bb9315f7c64da3ca43d87531622120fea0195fc761b4843" +dependencies = [ + "cc", +] + [[package]] name = "openssl-sys" version = "0.9.101" @@ -2073,6 +2082,7 @@ checksum = "dda2b0f344e78efc2facf7d195d098df0dd72151b26ab98da807afc26c198dff" dependencies = [ "cc", "libc", + "openssl-src", "pkg-config", "vcpkg", ] @@ -3175,6 +3185,7 @@ dependencies = [ "pretty_assertions", "rand", "regex", + "reqwest", "rustic_backend", "rustic_core", "self_update", diff --git a/Cargo.toml b/Cargo.toml index ad3b9ea..609d0ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,6 +31,7 @@ indicatif = "0.17.7" log = "0.4.20" passwords = "3.1.16" regex = "1.10.3" +reqwest = { version = "0.11.24", features = ["native-tls-vendored"] } rustic_backend = "0.1.1" rustic_core = "0.2.0" self_update = { version = "0.39.0", features = ["archive-tar", "compression-flate2"] }