fix: avoid duplicate crates

This commit is contained in:
Dimitris Apostolou
2025-02-24 13:48:31 +02:00
parent 441988cf43
commit fe60cea959
4 changed files with 10 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ wireguard-uapi = { workspace = true }
# Socket handler only
rosenpass-to = { workspace = true }
tokio = { version = "1.42.0", features = ["sync", "full", "mio"] }
tokio = { workspace = true, features = ["sync", "full", "mio"] }
anyhow = { workspace = true }
clap = { workspace = true }
env_logger = { workspace = true }
@@ -28,8 +28,8 @@ derive_builder = { workspace = true }
postcard = { workspace = true }
# Problem in CI, unknown reasons: dependency (libc) specified without providing a local path, Git repository, version, or workspace dependency to use
# Maybe something about the combination of features and optional crates?
rustix = { version = "0.38.42", optional = true }
libc = { version = "0.2", optional = true }
rustix = { workspace = true, optional = true }
libc = { workspace = true, optional = true }
# Mio broker client
mio = { workspace = true }