From d797061786a2909ced74a8310181cac40c8e99f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?cel=20=F0=9F=8C=B8?= Date: Tue, 25 Feb 2025 20:52:19 +0000 Subject: [PATCH] add `sqlx` feature to `jid` dependency --- luz/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luz/Cargo.toml b/luz/Cargo.toml index 7eea9c1..45a847f 100644 --- a/luz/Cargo.toml +++ b/luz/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" futures = "0.3.31" jabber = { version = "0.1.0", path = "../jabber" } peanuts = { version = "0.1.0", path = "../../peanuts" } -jid = { version = "0.1.0", path = "../jid" } +jid = { version = "0.1.0", path = "../jid", features = ["sqlx"] } sqlx = { version = "0.8.3", features = ["sqlite", "runtime-tokio", "uuid"] } stanza = { version = "0.1.0", path = "../stanza" } tokio = "1.42.0"