fix: libc & rustix are making problems in CI for unknown reasons

This commit is contained in:
Karolin Varner
2024-08-15 22:54:12 +02:00
parent 08653c3338
commit ab805dae75

View File

@@ -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 }