From 42c7423667a2d6acdebca75250ad30c5d475081b Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Mon, 28 Apr 2025 19:53:11 +0100 Subject: feat: serde --- 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 439ef75..b8f4956 100644 --- a/jid/Cargo.toml +++ b/jid/Cargo.toml @@ -6,9 +6,11 @@ edition = "2021" [features] # default = [] rusqlite = ["dep:rusqlite"] +serde = ["dep:serde"] # sqlx = ["dep:sqlx"] [dependencies] +serde = { version = "1.0.219", features = ["derive"], optional = true } 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