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 }