fuser 0.13

This commit is contained in:
Jack Grigg 2023-12-17 16:50:11 +00:00
parent 349fa9a7bb
commit fef2fc45d8
3 changed files with 7 additions and 22 deletions

23
Cargo.lock generated
View file

@ -871,9 +871,9 @@ dependencies = [
[[package]] [[package]]
name = "fuse_mt" name = "fuse_mt"
version = "0.6.0" version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6fb32ee97853a470831e058c0340955c9c773c8a1885aab99b37a2d3131fc06" checksum = "e098b8dc4cd32e9ba31d9c8cdfef11271d8191233c64c2a671432ff19d354948"
dependencies = [ dependencies = [
"fuser", "fuser",
"libc", "libc",
@ -883,9 +883,9 @@ dependencies = [
[[package]] [[package]]
name = "fuser" name = "fuser"
version = "0.11.1" version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "104ed58f182bc2975062cd3fab229e82b5762de420e26cf5645f661402694599" checksum = "21370f84640642c8ea36dfb2a6bfc4c55941f476fcf431f6fef25a5ddcf0169b"
dependencies = [ dependencies = [
"libc", "libc",
"log", "log",
@ -893,7 +893,6 @@ dependencies = [
"page_size", "page_size",
"pkg-config", "pkg-config",
"smallvec", "smallvec",
"users",
"zerocopy 0.6.6", "zerocopy 0.6.6",
] ]
@ -1588,9 +1587,9 @@ checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]] [[package]]
name = "page_size" name = "page_size"
version = "0.4.2" version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eebde548fbbf1ea81a99b128872779c437752fb99f217c45245e1a61dcd9edcd" checksum = "1b7663cbd190cfd818d08efa8497f6cd383076688c49a391ef7c0d03cd12b561"
dependencies = [ dependencies = [
"libc", "libc",
"winapi", "winapi",
@ -2618,16 +2617,6 @@ dependencies = [
"subtle", "subtle",
] ]
[[package]]
name = "users"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24cc0f6d6f267b73e5a2cadf007ba8f9bc39c6a6f9666f8cf25ea809a153b032"
dependencies = [
"libc",
"log",
]
[[package]] [[package]]
name = "uuid" name = "uuid"
version = "1.6.1" version = "1.6.1"

View file

@ -69,7 +69,7 @@ rust-embed.workspace = true
# rage-mount dependencies # rage-mount dependencies
ctrlc = { version = "3.2", optional = true } ctrlc = { version = "3.2", optional = true }
fuse_mt = { version = "0.6.0", optional = true } fuse_mt = { version = "0.6.0", optional = true }
fuser = { version = "0.11.1", optional = true } fuser = { version = "0.13", optional = true }
libc = { version = "0.2", optional = true } libc = { version = "0.2", optional = true }
tar = { version = "0.4", optional = true } tar = { version = "0.4", optional = true }
time = { version = ">=0.3.7, <0.3.24", optional = true } # time 0.3.24 has MSRV 1.67 time = { version = ">=0.3.7, <0.3.24", optional = true } # time 0.3.24 has MSRV 1.67

View file

@ -734,10 +734,6 @@ criteria = "safe-to-deploy"
version = "1.15.0" version = "1.15.0"
criteria = "safe-to-deploy" criteria = "safe-to-deploy"
[[exemptions.users]]
version = "0.11.0"
criteria = "safe-to-deploy"
[[exemptions.walkdir]] [[exemptions.walkdir]]
version = "2.3.3" version = "2.3.3"
criteria = "safe-to-deploy" criteria = "safe-to-deploy"