From 86c13611baa18111bdf02fdbf5119de1b04dd673 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Mon, 22 Jul 2024 23:56:50 +0200 Subject: [PATCH] Remove unused paths in multiple Cargo.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- jid/Cargo.toml | 2 +- parsers/Cargo.toml | 4 ++-- tokio-xmpp/Cargo.toml | 6 +++--- xmpp/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/jid/Cargo.toml b/jid/Cargo.toml index 467cc26a..dd5e8193 100644 --- a/jid/Cargo.toml +++ b/jid/Cargo.toml @@ -25,7 +25,7 @@ stringprep = "0.1.3" quote = { version = "1.0", optional = true } proc-macro2 = { version = "1.0", optional = true } # same repository dependencies -minidom = { version = "0.15", optional = true, path = "../minidom" } +minidom = { version = "0.15", optional = true } [dev-dependencies] serde_test = "1" diff --git a/parsers/Cargo.toml b/parsers/Cargo.toml index 16f6a6f8..6147c524 100644 --- a/parsers/Cargo.toml +++ b/parsers/Cargo.toml @@ -22,8 +22,8 @@ sha3 = "0.10" blake2 = "0.10.4" chrono = { version = "0.4.5", default-features = false, features = ["std"] } # same repository dependencies -jid = { version = "0.10", features = ["minidom"], path = "../jid" } -minidom = { version = "0.15", path = "../minidom" } +jid = { version = "0.10", features = ["minidom"] } +minidom = { version = "0.15" } xso = { version = "0.0.2", features = ["macros", "minidom", "panicking-into-impl", "jid", "base64"] } [features] diff --git a/tokio-xmpp/Cargo.toml b/tokio-xmpp/Cargo.toml index 0c2c688a..74b81811 100644 --- a/tokio-xmpp/Cargo.toml +++ b/tokio-xmpp/Cargo.toml @@ -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} diff --git a/xmpp/Cargo.toml b/xmpp/Cargo.toml index 6a7e1368..e1a4b3a0 100644 --- a/xmpp/Cargo.toml +++ b/xmpp/Cargo.toml @@ -21,7 +21,7 @@ log = "0.4" reqwest = { version = "0.12", features = ["stream"], default-features = false } tokio-util = { version = "0.7", features = ["codec"] } # same repository dependencies -tokio-xmpp = { version = "3.4", path = "../tokio-xmpp", default-features = false } +tokio-xmpp = { version = "3.4", default-features = false } [dev-dependencies] env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] }