1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Description: use newer minor version of crate fs4
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2026-01-20
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -14,7 +14,7 @@
ureq = "2.6"
dirs-next = "2.0.0"
flate2 = "1.0"
-fs4 = "0.6.6"
+fs4 = "0.13.1"
hex = "0.4"
is_executable = "0.1"
siphasher = "0.3"
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,7 +1,7 @@
//! Utilities for finding and installing binaries that we depend on.
use anyhow::{anyhow, bail, Context, Result};
-use fs4::FileExt;
+use fs4::fs_std::FileExt;
use siphasher::sip::SipHasher13;
use std::collections::HashSet;
use std::env;
|