From 26d0ee51e232b793bc83ba565c0e9ab820d8d0db Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Thu, 17 Apr 2025 11:24:43 +0100 Subject: feat(filamento): remove sqlx --- jid/Cargo.toml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'jid/Cargo.toml') diff --git a/jid/Cargo.toml b/jid/Cargo.toml index 57421ef..e3cf7c7 100644 --- a/jid/Cargo.toml +++ b/jid/Cargo.toml @@ -4,11 +4,15 @@ version = "0.1.0" edition = "2021" [features] -sqlx = ["dep:sqlx"] +# default = [] +# sqlx = ["dep:sqlx"] -[target.'cfg(not(target_arch = "wasm32"))'.dependencies] +[dependencies] # sqlx = { version = "0.8.3", features = ["sqlite"], optional = true } -sqlx = { path = "../../remote/sqlx", features = ["sqlite"], optional = true } +# sqlx = { path = "../../remote/sqlx", features = ["sqlite"], optional = true } -[target.'cfg(target_arch = "wasm32")'.dependencies] -sqlx = { path = "../../remote/sqlx", features = ["sqlite-precompiled-wasm"], optional = true } +# [target.'cfg(not(target_arch = "wasm32"))'.dependencies] +# sqlx = { version = "0.8.3", features = ["sqlite"], optional = true } + +# [target.'cfg(target_arch = "wasm32")'.dependencies] +# sqlx = { path = "../../remote/sqlx", features = ["sqlite-precompiled-wasm"], optional = true } -- cgit