Skip to content

Commit

Permalink
Update to rustix 0.35.
Browse files Browse the repository at this point in the history
The main change for fd-lock is that most of rustix is now behind feature
flags, so that crates like fd-lock can only enable the features they
need, like "fs". This makes `cargo build` of fd-lock from a clean tree
about 20% faster on my machine.
  • Loading branch information
sunfishcode committed Jun 18, 2022
1 parent a76aed6 commit 18168a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ features = [
]

[target.'cfg(unix)'.dependencies]
rustix = "0.34.0"
rustix = { version = "0.35.6", features = ["fs"] }

[dev-dependencies]
tempfile = "3.0.8"

0 comments on commit 18168a4

Please sign in to comment.