fix(stage-tamagotchi): forgot use of StateFlags

This commit is contained in:
Neko Ayaka
2025-07-05 22:45:39 +08:00
parent 66e7dc0137
commit 5ee9ddbda6
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -55,7 +55,7 @@ tauri-plugin-positioner = "2.3.0"
[target.'cfg(target_os = "macos")'.dependencies]
objc2 = "0.6.1"
objc2-foundation = "0.3.1"
ort = { version = "2.0.0-rc.10", features = ["ndarray", "coreml", "copy-dylibs"] }
ort = { version = "2.0.0-rc.10", features = ["ndarray", "coreml"] }
candle-core = { version = "0.9.1", features = ["metal"] }
candle-nn = { version = "0.9.1", features = ["metal"] }
candle-transformers = { version = "0.9.1", features = ["metal"] }
@@ -68,7 +68,7 @@ candle-nn = { version = "0.9.1", features = ["cuda"] }
candle-transformers = { version = "0.9.1", features = ["cuda"] }
[target.'cfg(target_os = "linux")'.dependencies]
ort = { version = "2.0.0-rc.10", features = ["ndarray", "cuda", "copy-dylibs"] }
ort = { version = "2.0.0-rc.10", features = ["ndarray", "cuda"] }
candle-core = { version = "0.9.1", features = ["cuda"] }
candle-nn = { version = "0.9.1", features = ["cuda"] }
candle-transformers = { version = "0.9.1", features = ["cuda"] }
+1 -1
View File
@@ -8,7 +8,7 @@ use tauri::{
};
use tauri_plugin_positioner::WindowExt;
use tauri_plugin_prevent_default::Flags;
use tauri_plugin_window_state::AppHandleExt;
use tauri_plugin_window_state::{AppHandleExt, StateFlags};
mod app;
mod helpers;