Skip to content

Commit d5c2a06

Browse files
Replace fs2 with fs4
The fs2 crate is not maintained anymore and has been forked to fs4.
1 parent ce1663e commit d5c2a06

File tree

3 files changed

+38
-13
lines changed

3 files changed

+38
-13
lines changed

Cargo.lock

+36-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ anyhow = "1.0"
1414
ureq = "2.6"
1515
dirs-next = "2.0.0"
1616
flate2 = "1.0"
17-
fs2 = "0.4"
17+
fs4 = "0.6.6"
1818
hex = "0.4"
1919
is_executable = "0.1"
2020
siphasher = "0.3"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Utilities for finding and installing binaries that we depend on.
22
33
use anyhow::{anyhow, bail, Context, Result};
4-
use fs2::FileExt;
4+
use fs4::FileExt;
55
use siphasher::sip::SipHasher13;
66
use std::collections::HashSet;
77
use std::env;

0 commit comments

Comments
 (0)