fix snake case warnings

This commit is contained in:
vms 2021-11-01 12:35:15 +03:00
parent a34f7ed906
commit 3431763954
3 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "marine-sqlite-connector"
version = "0.5.1"
version = "0.5.2"
license = "Apache-2.0/MIT"
authors = [
"Daniel Dulaney <ddy@vitronic.com>",

View File

@ -101,6 +101,7 @@
//! [1]: https://www.sqlite.org
#![allow(dead_code)]
#![allow(unused_unsafe)]
use sqlite3_connector as ffi;

View File

@ -1,3 +1,5 @@
#![allow(non_snake_case)]
use marine_rs_sdk::marine;
pub(crate) type Sqlite3DbHandle = u32;