cb3da52ba2
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.
20 lines
365 B
TOML
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" }
|