714d850e69
We know those are Rust libraries, no need to add it to the path. This synchronises their directory with the crate name, hopefully reducing confusion.
15 lines
293 B
TOML
15 lines
293 B
TOML
[workspace]
|
|
members = [ # alphabetically sorted
|
|
"jid",
|
|
"minidom",
|
|
"tokio-xmpp",
|
|
"xmpp-parsers",
|
|
"xmpp",
|
|
]
|
|
|
|
[patch.crates-io]
|
|
jid = { path = "jid" }
|
|
minidom = { path = "minidom" }
|
|
tokio-xmpp = { path = "tokio-xmpp" }
|
|
xmpp-parsers = { path = "xmpp-parsers" }
|
|
xmpp = { path = "xmpp" }
|