Skip to content

Commit 5cca011

Browse files
authoredJan 14, 2025··
fix: arguments (#22)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Added serialization and deserialization methods for database connections - Enhanced statement preparation with additional type support - **Refactor** - Updated connection and statement handling to use mutable references - Modified method signatures to improve flexibility and type management <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 0aa5305 commit 5cca011

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed
 

‎Cargo.toml

+12-7
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ targets = ["wasm32-unknown-unknown"]
1818

1919
[dependencies]
2020
talc = { version = "4.4", default-features = false, features = ["lock_api"] }
21-
diesel = { version = "2.2", features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes"] }
21+
diesel = { version = "2.2", features = [
22+
"i-implement-a-third-party-backend-and-opt-into-breaking-changes",
23+
] }
2224
diesel_derives = "2.2"
23-
wasm-bindgen = "=0.2.99"
24-
wasm-bindgen-futures = "0.4"
25+
wasm-bindgen = "=0.2.100"
26+
wasm-bindgen-futures = "0.4.50"
2527
js-sys = { version = "0.3" }
2628
tracing = { version = "0.1", default-features = false }
2729
tokio = { version = "1.38", default-features = false, features = ["sync"] }
@@ -30,16 +32,19 @@ serde-wasm-bindgen = "0.6"
3032
thiserror = "2"
3133

3234
[dev-dependencies]
33-
wasm-bindgen-test = "=0.3.49"
34-
console_error_panic_hook = { version = "0.1"}
35+
wasm-bindgen-test = "=0.3.50"
36+
console_error_panic_hook = { version = "0.1" }
3537
rand = "0.8"
3638
getrandom = { version = "0.2", features = ["js"] }
3739
web-sys = { version = "0.3", features = ["console"] }
3840
chrono = { version = "0.4", features = ["wasmbind", "serde"] }
3941
diesel_migrations = "2.2"
40-
diesel = { version = "2.2", features = ["chrono"]}
42+
diesel = { version = "2.2", features = ["chrono"] }
4143
tracing-wasm = { version = "0.2" }
42-
tracing-subscriber = { version = "0.3", features = ["env-filter", "tracing-log"] }
44+
tracing-subscriber = { version = "0.3", features = [
45+
"env-filter",
46+
"tracing-log",
47+
] }
4348

4449
[patch.crates-io]
4550
diesel = { git = "https://github.com/diesel-rs/diesel", branch = "master" }

‎src/connection/mod.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,9 @@ impl WasmSqliteConnection {
289289
&source,
290290
&WasmSqlite,
291291
&[],
292-
|sql, is_cached| Statement::prepare(raw_connection, sql, is_cached),
293-
instrumentation.as_mut(),
292+
raw_connection,
293+
Statement::prepare,
294+
&mut *instrumentation,
294295
) {
295296
Ok(statement) => statement,
296297
Err(e) => {

‎src/connection/stmt.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ impl Statement {
3333
// since the statement pointer might be invalidated if a memory resize
3434
// takes place.
3535
pub fn prepare(
36-
raw_connection: &RawConnection,
36+
raw_connection: &mut RawConnection,
3737
sql: &str,
3838
is_cached: PrepareForCache,
39+
_: &[SqliteType],
3940
) -> QueryResult<Self> {
4041
let sqlite3 = crate::get_sqlite_unchecked();
4142

0 commit comments

Comments
 (0)