xmpp-rs/Cargo.toml
Jonas Schäfer cb3da52ba2 parsers: add streamable parsing
This adds shims which provide FromXml and IntoXml implementations to
*all* macro-generated types in `xmpp_parsers`. Mind that this does not
cover all types in `xmpp_parsers`, but a good share of them.

This is another first step toward real, fully streamed parsing.
2024-06-18 16:54:11 +02:00

20 lines
365 B
TOML

[workspace]
members = [ # alphabetically sorted
"jid",
"minidom",
"parsers",
"sasl",
"tokio-xmpp",
"xmpp",
"xso",
]
resolver = "2"
[patch.crates-io]
jid = { path = "jid" }
minidom = { path = "minidom" }
sasl = { path = "sasl" }
tokio-xmpp = { path = "tokio-xmpp" }
xmpp-parsers = { path = "parsers" }
xmpp = { path = "xmpp" }
xso = { path = "xso" }