Use rusqlite::ffi instead of extern crate libsqlite3_sys

This commit is contained in:
Thom Chiovoloni
2019-01-29 14:59:41 -08:00
parent 9478c490fb
commit ef757240c1
3 changed files with 1 additions and 4 deletions

View File

@@ -1,8 +1,7 @@
//! Ensure we reject connections when SQLite is in single-threaded mode, as it
//! would violate safety if multiple Rust threads tried to use connections.
use libsqlite3_sys as ffi;
use rusqlite::ffi;
use rusqlite::Connection;
#[test]