From c12c005439420db80b7585f400be4377e57a58f8 Mon Sep 17 00:00:00 2001 From: Mahmoud Mazouz Date: Wed, 13 Mar 2024 08:58:21 +0100 Subject: [PATCH] fix: Relax dependency requirements (#758) - async-io - unix-named-pipe - filepath - advisory-lock --- Cargo.toml | 2 +- io/zenoh-links/zenoh-link-unixpipe/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d7210ebc0e..d82d8ae7a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,7 +76,7 @@ ahash = "0.8.7" anyhow = { version = "1.0.69", default-features = false } # Default features are disabled due to usage in no_std crates async-executor = "1.5.0" async-global-executor = "2.3.1" -async-io = "=1.13.0" +async-io = "1.13.0" async-rustls = "0.4.0" async-std = { version = "=1.12.0", default-features = false } # Default features are disabled due to some crates' requirements async-trait = "0.1.60" diff --git a/io/zenoh-links/zenoh-link-unixpipe/Cargo.toml b/io/zenoh-links/zenoh-link-unixpipe/Cargo.toml index bf8d2a2c08..2801dc3a22 100644 --- a/io/zenoh-links/zenoh-link-unixpipe/Cargo.toml +++ b/io/zenoh-links/zenoh-link-unixpipe/Cargo.toml @@ -41,9 +41,9 @@ zenoh-protocol = { workspace = true } zenoh-result = { workspace = true } [target.'cfg(unix)'.dependencies] -unix-named-pipe = "=0.2.0" +unix-named-pipe = "0.2.0" nix = { workspace = true } -filepath = "=0.1.2" +filepath = "0.1.2" [target.'cfg(all(not(target_os="macos"), unix))'.dependencies] -advisory-lock = "=0.3.0" +advisory-lock = "0.3.0"