diff options
Diffstat (limited to 'stanza/Cargo.toml')
-rw-r--r-- | stanza/Cargo.toml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/stanza/Cargo.toml b/stanza/Cargo.toml index e4eb302..ec68499 100644 --- a/stanza/Cargo.toml +++ b/stanza/Cargo.toml @@ -4,13 +4,14 @@ 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 +20,10 @@ xep_0084 = [] xep_0115 = [] xep_0128 = ["xep_0004"] xep_0131 = [] +xep_0156 = ["dep:chrono"] xep_0172 = [] xep_0199 = [] xep_0203 = ["dep:chrono"] +xep_0297 = ["xep_0203"] xep_0300 = [] xep_0390 = ["xep_0300"] |