Fix rfd portal runtime feature
This commit is contained in:
Generated
+3
@@ -250,6 +250,7 @@ dependencies = [
|
|||||||
"raw-window-handle",
|
"raw-window-handle",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_repr",
|
"serde_repr",
|
||||||
|
"tokio",
|
||||||
"url",
|
"url",
|
||||||
"wayland-backend",
|
"wayland-backend",
|
||||||
"wayland-client",
|
"wayland-client",
|
||||||
@@ -7665,6 +7666,7 @@ dependencies = [
|
|||||||
"signal-hook-registry",
|
"signal-hook-registry",
|
||||||
"socket2 0.6.5",
|
"socket2 0.6.5",
|
||||||
"tokio-macros",
|
"tokio-macros",
|
||||||
|
"tracing",
|
||||||
"windows-sys 0.61.2",
|
"windows-sys 0.61.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -9241,6 +9243,7 @@ dependencies = [
|
|||||||
"rustix 1.1.4",
|
"rustix 1.1.4",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_repr",
|
"serde_repr",
|
||||||
|
"tokio",
|
||||||
"tracing",
|
"tracing",
|
||||||
"uds_windows",
|
"uds_windows",
|
||||||
"uuid",
|
"uuid",
|
||||||
|
|||||||
+1
-1
@@ -36,7 +36,7 @@ music-dht = "0.4.0"
|
|||||||
serde_json = "1.0.150"
|
serde_json = "1.0.150"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
rusqlite = { version = "0.32.1", features = ["bundled"] }
|
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 = [
|
rodio = { version = "0.22.2", default-features = false, features = [
|
||||||
"playback",
|
"playback",
|
||||||
"mp3",
|
"mp3",
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ pkgs.mkShell {
|
|||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
|
alsa-lib
|
||||||
fontconfig
|
fontconfig
|
||||||
freetype
|
freetype
|
||||||
libxkbcommon
|
libxkbcommon
|
||||||
@@ -22,6 +23,7 @@ pkgs.mkShell {
|
|||||||
];
|
];
|
||||||
|
|
||||||
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [
|
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [
|
||||||
|
alsa-lib
|
||||||
fontconfig
|
fontconfig
|
||||||
freetype
|
freetype
|
||||||
libxkbcommon
|
libxkbcommon
|
||||||
@@ -35,4 +37,3 @@ pkgs.mkShell {
|
|||||||
|
|
||||||
RUST_BACKTRACE = "1";
|
RUST_BACKTRACE = "1";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user