Sherlock-Holo / fuse3

an async version fuse library for rust
MIT License
83 stars 17 forks source link

Drop minor version dependency for nix. #64

Closed aarond10 closed 1 year ago

aarond10 commented 1 year ago

nix 0.26.1 contains bugs and mainline contains pull requests for unsound behavior. It seems unnecessary to track a specific minor version so just depend on 0.26.x instead.

If this seems OK, could you also bump the release version and push to crates.io for me?

Sherlock-Holo commented 1 year ago

cargo will ignore library dependency minor version, even you write nix = "0.26.1", unless you pin the version like nix = "=0.26.1"

I create an empty project and add fuse3 dependency, cargo fetch downloaded

Downloaded nix v0.26.2

so I thinks this PR can be merged, but a new release version is unnecessary

Sherlock-Holo commented 1 year ago

LGTM