From f403cb12dbaddbbcb5f3027911af1677fcd07f3a Mon Sep 17 00:00:00 2001 From: CJ Pais Date: Sun, 1 Mar 2026 22:04:47 +0700 Subject: [PATCH] update transcribe-rs --- src-tauri/Cargo.lock | 45 +++++++++++--------------------------------- src-tauri/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 35 deletions(-) diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index ec7d08a..07a0c72 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -14,16 +14,6 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" -[[package]] -name = "advapi32-sys" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e06588080cb19d0acb6739808aafa5f26bfb2ca015b2b6370028b44cf7cb8a9a" -dependencies = [ - "winapi 0.2.8", - "winapi-build", -] - [[package]] name = "ahash" version = "0.7.8" @@ -1402,7 +1392,7 @@ checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" dependencies = [ "libc", "redox_users 0.4.6", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -1464,7 +1454,7 @@ dependencies = [ "dlopen2_derive", "libc", "once_cell", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2259,7 +2249,7 @@ dependencies = [ "gobject-sys", "libc", "system-deps 6.2.2", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -3199,7 +3189,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" dependencies = [ "cfg-if", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -4863,7 +4853,7 @@ dependencies = [ "strum", "strum_macros", "widestring", - "winapi 0.3.9", + "winapi", "x11", ] @@ -4882,7 +4872,7 @@ dependencies = [ "inotify 0.8.3", "lazy_static", "libc", - "winapi 0.3.9", + "winapi", "x11", ] @@ -5767,7 +5757,7 @@ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b" dependencies = [ "byteorder", "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -7153,11 +7143,10 @@ dependencies = [ [[package]] name = "transcribe-rs" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25ad0a55f1482ec523073073a3a08a457c57dd956d09d62cdfe05a27a5591334" +checksum = "811b3e12455e39ad39003be9a4b7043363a7082b50484a3eb6e3e862466520e4" dependencies = [ - "advapi32-sys", "base64 0.22.1", "derive_builder", "env_logger", @@ -7243,7 +7232,7 @@ checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9" dependencies = [ "memoffset", "tempfile", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -7893,12 +7882,6 @@ version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" -[[package]] -name = "winapi" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" - [[package]] name = "winapi" version = "0.3.9" @@ -7909,12 +7892,6 @@ dependencies = [ "winapi-x86_64-pc-windows-gnu", ] -[[package]] -name = "winapi-build" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" - [[package]] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" @@ -8520,7 +8497,7 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index e9bb51a..de1245a 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -68,7 +68,7 @@ chrono = "0.4" rusqlite = { version = "0.37", features = ["bundled"] } tar = "0.4.44" flate2 = "1.0" -transcribe-rs = { version = "0.2.7", features = ["whisper", "parakeet", "moonshine", "sense_voice", "gigaam"] } +transcribe-rs = { version = "0.2.8", features = ["whisper", "parakeet", "moonshine", "sense_voice", "gigaam"] } handy-keys = "0.2.2" ferrous-opencc = "0.2.3" clap = { version = "4", features = ["derive"] }