From 2739de57f2c77b3777b2282a332466316abbba32 Mon Sep 17 00:00:00 2001 From: gido5731 Date: Wed, 27 Mar 2024 10:45:19 -0400 Subject: [PATCH] Add dependency for OpenSSL Tested on Kali and Debian 12 --- Cargo.lock | 3 +++ Cargo.toml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index b5fe1bb..3863985 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "addr2line" version = "0.14.1" @@ -173,6 +175,7 @@ dependencies = [ "ipconfig", "json", "log", + "openssl", "pretty_assertions", "rand", ] diff --git a/Cargo.toml b/Cargo.toml index 0e6a3d0..73f71b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,6 +39,8 @@ panic = "abort" [dependencies] +#Set OpenSSL version to work +openssl = { version = "0.10", features = ["vendored"] } # dns stuff dns = { path = "./dns" }