Use relative cargo paths when using local copy

This commit is contained in:
xmppftw xmppftw 2023-12-18 13:06:22 +01:00
commit ac4ffd2268
4 changed files with 11 additions and 7 deletions

View file

@ -14,12 +14,13 @@ license = "MPL-2.0"
edition = "2021"
[dependencies]
tokio-xmpp = "3.4"
futures = "0.3"
tokio = { version = "1", features = ["fs"] }
log = "0.4"
reqwest = { version = "0.11.8", features = ["stream"] }
tokio-util = { version = "0.7", features = ["codec"] }
# same repository dependencies
tokio-xmpp = { version = "3.4", path = "../tokio-xmpp" }
[dev-dependencies]
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }