Skip to content

Commit

Permalink
Fix version of unixpipe dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Mallets committed Dec 20, 2023
1 parent c9500e0 commit 7f47a02
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ aes = "0.8.2"
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-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"
Expand Down
8 changes: 4 additions & 4 deletions io/zenoh-links/zenoh-link-unixpipe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ transport_unixpipe = []
[dependencies]
async-std = { workspace = true }
async-trait = { workspace = true }
async-io = ">= 1.13.0"
async-io = { workspace = true }
log = { workspace = true }
rand = { workspace = true, features = ["default"] }
zenoh-buffers = { workspace = true }
Expand All @@ -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"

0 comments on commit 7f47a02

Please sign in to comment.