From 50b257652da77f924722dda415f726ec33057aea Mon Sep 17 00:00:00 2001 From: togir <marvin@weiler.rocks> Date: Tue, 8 Mar 2022 10:38:09 +0000 Subject: [PATCH] added the openssl-sys to the cargo.toml --- Cargo.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 3ec3e0c..8b9d452 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,3 +14,10 @@ lettre = { version = "0.10.0-rc.4", features = [ "smtp-transport", "native-tls", ] } +openssl-sys = "*" + +[features] +# Force openssl-sys to staticly link in the openssl library. Necessary when +# cross compiling to x86_64-unknown-linux-musl and 32 bit. +vendored = ["openssl-sys/vendored"] + -- GitLab