From 61b755c890dcaa66daa35942ca87cc00269b0fe9 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Thu, 17 Apr 2025 17:30:22 +0100 Subject: feat(filamento): full wasm support by switching to rusqlite --- jid/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'jid/Cargo.toml') diff --git a/jid/Cargo.toml b/jid/Cargo.toml index e3cf7c7..439ef75 100644 --- a/jid/Cargo.toml +++ b/jid/Cargo.toml @@ -5,9 +5,11 @@ edition = "2021" [features] # default = [] +rusqlite = ["dep:rusqlite"] # sqlx = ["dep:sqlx"] [dependencies] +rusqlite = { git = "https://github.com/Spxg/rusqlite.git", optional = true, branch = "wasm-demo" } # sqlx = { version = "0.8.3", features = ["sqlite"], optional = true } # sqlx = { path = "../../remote/sqlx", features = ["sqlite"], optional = true } -- cgit