deps: Bump RFD to the newest revision

This fixes filters in XDG portals and allows
showing files without an extension.
This commit is contained in:
Kamil Jarosz 2024-09-06 21:33:30 +02:00 committed by TÖRÖK Attila
parent 7d07eb2b52
commit 4d01b483c0
2 changed files with 21 additions and 9 deletions

28
Cargo.lock generated
View File

@ -248,9 +248,9 @@ dependencies = [
[[package]]
name = "ashpd"
version = "0.8.1"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd884d7c72877a94102c3715f3b1cd09ff4fac28221add3e57cfbe25c236d093"
checksum = "bfe7e0dd0ac5a401dc116ed9f9119cf9decc625600474cb41f0fc0a0050abc9a"
dependencies = [
"async-fs",
"async-net",
@ -264,7 +264,7 @@ dependencies = [
"url",
"wayland-backend",
"wayland-client",
"wayland-protocols",
"wayland-protocols 0.32.1",
"zbus",
]
@ -4172,7 +4172,7 @@ dependencies = [
[[package]]
name = "rfd"
version = "0.14.1"
source = "git+https://github.com/PolyMeilex/rfd.git?rev=42dcc7d61fc5e278b4ed76bb9720ba4d89266f01#42dcc7d61fc5e278b4ed76bb9720ba4d89266f01"
source = "git+https://github.com/PolyMeilex/rfd.git?rev=e0e725ec9a426acf7c93d9877c41e230fcee3fac#e0e725ec9a426acf7c93d9877c41e230fcee3fac"
dependencies = [
"ashpd",
"block2 0.5.1",
@ -4977,7 +4977,7 @@ dependencies = [
"wayland-client",
"wayland-csd-frame",
"wayland-cursor",
"wayland-protocols",
"wayland-protocols 0.31.2",
"wayland-protocols-wlr",
"wayland-scanner",
"xkeysym",
@ -6060,6 +6060,18 @@ dependencies = [
"wayland-scanner",
]
[[package]]
name = "wayland-protocols"
version = "0.32.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83d0f1056570486e26a3773ec633885124d79ae03827de05ba6c85f79904026c"
dependencies = [
"bitflags 2.6.0",
"wayland-backend",
"wayland-client",
"wayland-scanner",
]
[[package]]
name = "wayland-protocols-plasma"
version = "0.2.0"
@ -6069,7 +6081,7 @@ dependencies = [
"bitflags 2.6.0",
"wayland-backend",
"wayland-client",
"wayland-protocols",
"wayland-protocols 0.31.2",
"wayland-scanner",
]
@ -6082,7 +6094,7 @@ dependencies = [
"bitflags 2.6.0",
"wayland-backend",
"wayland-client",
"wayland-protocols",
"wayland-protocols 0.31.2",
"wayland-scanner",
]
@ -6673,7 +6685,7 @@ dependencies = [
"wasm-bindgen-futures",
"wayland-backend",
"wayland-client",
"wayland-protocols",
"wayland-protocols 0.31.2",
"wayland-protocols-plasma",
"web-sys",
"web-time 0.2.4",

View File

@ -73,7 +73,7 @@ url = "2.5.2"
wasm-bindgen = "=0.2.93"
walkdir = "2.5.0"
tokio = { version = "1.40.0" }
rfd = { git = "https://github.com/PolyMeilex/rfd.git", rev = "42dcc7d61fc5e278b4ed76bb9720ba4d89266f01" }
rfd = { git = "https://github.com/PolyMeilex/rfd.git", rev = "e0e725ec9a426acf7c93d9877c41e230fcee3fac" }
[workspace.lints.rust]
# Clippy nightly often adds new/buggy lints that we want to ignore.