From 88bc1a5715561a8b74a50a63d8f6dd8fb491c650 Mon Sep 17 00:00:00 2001 From: vms Date: Tue, 11 May 2021 00:17:10 +0300 Subject: [PATCH] bump versions --- Cargo.toml | 4 ++-- src/lib.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1c67f83..d018d1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "marine-sqlite-connector" -version = "0.4.0" +version = "0.4.1" license = "Apache-2.0/MIT" authors = [ "Daniel Dulaney ", @@ -35,7 +35,7 @@ name = "test" path = "src/test.rs" [dependencies] -fluence = "0.6.3" +fluence = "0.6.4" [dev-dependencies] temporary = "0.6" diff --git a/src/lib.rs b/src/lib.rs index 85e0bb6..674c56f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -273,8 +273,8 @@ mod statement; pub use connection::Connection; pub use connection::OpenFlags; pub use cursor::Cursor; -pub use statement::{Bindable, Readable, State, Statement}; pub use sqlite3_connector::*; +pub use statement::{Bindable, Readable, State, Statement}; /// Open a read-write connection to a new or existing database. #[inline]