Skip to content

Commit

Permalink
fix: Relax dependency requirements (#758)
Browse files Browse the repository at this point in the history
- async-io
- unix-named-pipe
- filepath
- advisory-lock
  • Loading branch information
fuzzypixelz authored Mar 13, 2024
1 parent 6045bfe commit c12c005
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions io/zenoh-links/zenoh-link-unixpipe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 c12c005

Please sign in to comment.