mirror of
https://github.com/isar/rusqlite.git
synced 2025-08-19 12:29:34 +08:00
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:
committed by
Thom Chiovoloni
parent
3982393bbe
commit
66ace52c4a
@@ -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;
|
||||
|
Reference in New Issue
Block a user