Remove unused paths in multiple Cargo.toml

Paths are already patched in the workspace's [patch.crates-io] block.
Not sure why this was added in the first place.

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2024-07-22 23:56:50 +02:00 committed by Link Mauve
commit 86c13611ba
4 changed files with 7 additions and 7 deletions

View file

@ -23,9 +23,9 @@ rxml = { version = "0.11.0", features = ["compact_str"] }
rand = "^0.8"
syntect = { version = "5", optional = true }
# same repository dependencies
minidom = { version = "0.15", path = "../minidom" }
sasl = { version = "0.5", path = "../sasl" }
xmpp-parsers = { version = "0.20", path = "../parsers" }
minidom = { version = "0.15" }
sasl = { version = "0.5" }
xmpp-parsers = { version = "0.20" }
# these are only needed for starttls ServerConnector support
hickory-resolver = { version = "0.24", optional = true}