xmpp-rs/Cargo.toml
Emmanuel Gil Peyrot 9410849d7a Rename the xmpp-parsers directory to parsers
This doesn’t change anything to the name of the crate, just makes
autocompletion easier by not sharing the same prefix as the xmpp crate.
2021-10-11 08:24:16 +02:00

15 lines
283 B
TOML

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