diff options
| author | 2026-01-21 14:52:05 +0800 | |
|---|---|---|
| committer | 2026-01-21 14:52:05 +0800 | |
| commit | cfad1f27e2830cee28de480de58fff91d05b9cf8 (patch) | |
| tree | 57fe3691e34002f8acaae9d6158c75ff5c8ff4fc /src-tauri | |
| parent | 3688279b7ac5319433aa3dc8e456be13902c9fc5 (diff) | |
| download | DropOut-cfad1f27e2830cee28de480de58fff91d05b9cf8.tar.gz DropOut-cfad1f27e2830cee28de480de58fff91d05b9cf8.zip | |
fix: Update ts_rs import to include Serialize
Diffstat (limited to 'src-tauri')
| -rw-r--r-- | src-tauri/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index dfd2535..985b3f2 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -7,7 +7,7 @@ use std::sync::Mutex; use tauri::{Emitter, Manager, State, Window}; // Added Emitter use tokio::io::{AsyncBufReadExt, BufReader}; use tokio::process::Command; -use ts_rs::TS; // Added Serialize +use ts_rs::TS; #[cfg(target_os = "windows")] use std::os::windows::process::CommandExt; |