Fix OpenSSL linking on Windows

Technically this is a breaking change moving from `libeay32` to
`libcrypto` but no one should be using an openssl version from <=2016.
This commit is contained in:
BlackHoleFox
2021-10-06 00:04:04 -05:00
committed by Thom Chiovoloni
parent 3982393bbe
commit 66ace52c4a
2 changed files with 11 additions and 15 deletions

View File

@@ -1,6 +1,10 @@
#![allow(non_snake_case, non_camel_case_types)]
#![cfg_attr(test, allow(deref_nullptr))] // https://github.com/rust-lang/rust-bindgen/issues/2066
// force linking to openssl
#[cfg(feature = "bundled-sqlcipher-vendored-openssl")]
extern crate openssl_sys;
pub use self::error::*;
use std::default::Default;