From ab805dae75bf06bb7f9f6926e6adaed5e1c29495 Mon Sep 17 00:00:00 2001 From: Karolin Varner Date: Thu, 15 Aug 2024 22:54:12 +0200 Subject: [PATCH] fix: libc & rustix are making problems in CI for unknown reasons --- wireguard-broker/Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/wireguard-broker/Cargo.toml b/wireguard-broker/Cargo.toml index ef4d589..8d26832 100644 --- a/wireguard-broker/Cargo.toml +++ b/wireguard-broker/Cargo.toml @@ -26,8 +26,10 @@ env_logger = { workspace = true } log = { workspace = true } derive_builder = {workspace = true} postcard = {workspace = true} -rustix = { worspace = true, optional = true } -libc = { worspace = true, optional = 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.27", optional = true } +libc = { version = "0.2", optional = true } # Mio broker client mio = { workspace = true }