Disable winsqlite3 on 32 bit targets

This commit is contained in:
Thom Chiovoloni
2022-04-02 11:42:28 -07:00
parent 3f6570f8bf
commit f8b9ad8907
3 changed files with 10 additions and 1 deletions

View File

@@ -5,6 +5,9 @@
#[cfg(feature = "bundled-sqlcipher-vendored-openssl")]
extern crate openssl_sys;
#[cfg(all(windows, feature = "winsqlite3", target_pointer_width = "32"))]
compile_error!("The `libsqlite3-sys/winsqlite3` feature is not supported on 32 bit targets.");
pub use self::error::*;
use std::default::Default;