Skip to content

Commit 054d353

Browse files
committed
Add clone to database
1 parent 62d5af0 commit 054d353

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/sqlite/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rquickjs-extra-sqlite"
33
description = "SQLite module for RQuickJS"
4-
version = "0.1.0"
4+
version = "0.1.1"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/rquickjs/rquickjs-extra"

modules/sqlite/src/database.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use sqlx::{Executor, SqlitePool};
44

55
use super::Statement;
66

7-
#[derive(Trace, JsLifetime)]
7+
#[derive(Clone, Trace, JsLifetime)]
88
#[rquickjs::class]
99
pub struct Database {
1010
#[qjs(skip_trace)]

0 commit comments

Comments
 (0)