@korajs/tauri 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@korajs/tauri",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Tauri storage adapter for Kora.js — native SQLite with zero WASM overhead",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
package/plugin/Cargo.toml CHANGED
@@ -1,10 +1,11 @@
1
1
  [package]
2
- name = "tauri-plugin-kora"
2
+ name = "tauri-plugin-kora-sqlite"
3
3
  version = "0.1.0"
4
4
  edition = "2021"
5
5
  description = "Tauri plugin providing native SQLite storage for Kora.js applications"
6
6
  license = "MIT"
7
7
  repository = "https://github.com/nicholasgriffintn/kora"
8
+ links = "tauri-plugin-kora-sqlite"
8
9
 
9
10
  [dependencies]
10
11
  tauri = { version = "2", features = [] }
@@ -1,7 +1,7 @@
1
1
  use std::collections::HashMap;
2
2
  use std::sync::Mutex;
3
3
 
4
- use rusqlite::{params_from_iter, Connection};
4
+ use rusqlite::Connection;
5
5
  use serde_json::Value as JsonValue;
6
6
  use tauri::{AppHandle, Manager, Runtime, State};
7
7