Fix rfd portal runtime feature

This commit is contained in:
Aleksandr Bogomiakov
2026-08-13 16:19:15 +01:00
parent 728ca708b2
commit f6d8cb0631
3 changed files with 6 additions and 2 deletions
Generated
+3
View File
@@ -250,6 +250,7 @@ dependencies = [
"raw-window-handle",
"serde",
"serde_repr",
"tokio",
"url",
"wayland-backend",
"wayland-client",
@@ -7665,6 +7666,7 @@ dependencies = [
"signal-hook-registry",
"socket2 0.6.5",
"tokio-macros",
"tracing",
"windows-sys 0.61.2",
]
@@ -9241,6 +9243,7 @@ dependencies = [
"rustix 1.1.4",
"serde",
"serde_repr",
"tokio",
"tracing",
"uds_windows",
"uuid",
+1 -1
View File
@@ -36,7 +36,7 @@ music-dht = "0.4.0"
serde_json = "1.0.150"
serde = { version = "1.0", features = ["derive"] }
rusqlite = { version = "0.32.1", features = ["bundled"] }
rfd = { version = "0.15.4", default-features = false, features = ["xdg-portal"] }
rfd = { version = "0.15.4", default-features = false, features = ["xdg-portal", "tokio"] }
rodio = { version = "0.22.2", default-features = false, features = [
"playback",
"mp3",
+2 -1
View File
@@ -10,6 +10,7 @@ pkgs.mkShell {
];
buildInputs = with pkgs; [
alsa-lib
fontconfig
freetype
libxkbcommon
@@ -22,6 +23,7 @@ pkgs.mkShell {
];
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [
alsa-lib
fontconfig
freetype
libxkbcommon
@@ -35,4 +37,3 @@ pkgs.mkShell {
RUST_BACKTRACE = "1";
}