aboutsummaryrefslogtreecommitdiffstats
path: root/stanza/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stanza/Cargo.toml17
1 files changed, 13 insertions, 4 deletions
diff --git a/stanza/Cargo.toml b/stanza/Cargo.toml
index e4eb302..9bbe3f3 100644
--- a/stanza/Cargo.toml
+++ b/stanza/Cargo.toml
@@ -1,16 +1,21 @@
+# SPDX-FileCopyrightText: 2025 cel <cel@bunny.garden>
+#
+# SPDX-License-Identifier: AGPL-3.0-or-later
+
[package]
name = "stanza"
version = "0.1.0"
edition = "2021"
[dependencies]
-peanuts = { version = "0.1.0", git = "https://bunny.garden/peanuts" }
-jid = { version = "0.1.0", path = "../jid" }
-thiserror = "2.0.11"
-chrono = { version = "0.4.40", optional = true }
+peanuts = { workspace = true }
+jid = { workspace = true }
+thiserror = { workspace = true }
+chrono = { workspace = true, optional = true }
[features]
rfc_6121 = []
+rfc_7395 = []
xep_0004 = []
xep_0030 = []
xep_0059 = []
@@ -19,8 +24,12 @@ xep_0084 = []
xep_0115 = []
xep_0128 = ["xep_0004"]
xep_0131 = []
+xep_0156 = ["dep:chrono"]
xep_0172 = []
xep_0199 = []
xep_0203 = ["dep:chrono"]
+xep_0280 = ["xep_0297"]
+xep_0297 = ["xep_0203"]
xep_0300 = []
+xep_0334 = []
xep_0390 = ["xep_0300"]