mirror of
https://github.com/fluencelabs/sqlite-wasm-connector
synced 2025-04-03 15:01:06 +00:00
Introduce the edge feature for backward compatibility
This commit is contained in:
parent
6d4454a6f5
commit
a31345da43
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sqlite"
|
name = "sqlite"
|
||||||
version = "0.10.0"
|
version = "0.11.0"
|
||||||
authors = ["Ivan Ukhov <ivan.ukhov@gmail.com>"]
|
authors = ["Ivan Ukhov <ivan.ukhov@gmail.com>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/stainless-steel/sqlite"
|
repository = "https://github.com/stainless-steel/sqlite"
|
||||||
@ -8,6 +8,9 @@ homepage = "https://github.com/stainless-steel/sqlite"
|
|||||||
documentation = "https://stainless-steel.github.io/sqlite"
|
documentation = "https://stainless-steel.github.io/sqlite"
|
||||||
description = "The package provides an interface to SQLite."
|
description = "The package provides an interface to SQLite."
|
||||||
|
|
||||||
|
[features]
|
||||||
|
edge = ["sqlite3-sys/edge"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libc = "*"
|
libc = "*"
|
||||||
sqlite3-sys = "*"
|
sqlite3-sys = "*"
|
||||||
|
@ -99,6 +99,15 @@ impl<'l> Database<'l> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'l> Drop for Database<'l> {
|
impl<'l> Drop for Database<'l> {
|
||||||
|
#[cfg(not(feature = "edge"))]
|
||||||
|
#[inline]
|
||||||
|
#[allow(unused_must_use)]
|
||||||
|
fn drop(&mut self) {
|
||||||
|
self.remove_busy_handler();
|
||||||
|
unsafe { ffi::sqlite3_close(self.raw) };
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "edge")]
|
||||||
#[inline]
|
#[inline]
|
||||||
#[allow(unused_must_use)]
|
#[allow(unused_must_use)]
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user