From aa8c9ccbeac0e194076b9a86aa33bf4d42494a68 Mon Sep 17 00:00:00 2001 From: Kodai Aoyama Date: Wed, 6 Nov 2024 22:29:25 +0900 Subject: [PATCH 1/2] change import style to crate.io on whisper-rs --- src-tauri/Cargo.lock | 10 ++++++---- src-tauri/Cargo.toml | 3 +-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 12e8bac..225ebbf 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -8961,16 +8961,18 @@ dependencies = [ [[package]] name = "whisper-rs" -version = "0.13.1" -source = "git+https://github.com/tazz4843/whisper-rs.git?rev=dd0c3af#dd0c3af40874bc8c052b2c430b381593f9cfd719" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d26c1da5ab769d04d87f1be58fbc91f942d67ce3f7863a787e279572ace943b" dependencies = [ "whisper-rs-sys", ] [[package]] name = "whisper-rs-sys" -version = "0.11.1" -source = "git+https://github.com/tazz4843/whisper-rs.git?rev=dd0c3af#dd0c3af40874bc8c052b2c430b381593f9cfd719" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "081bd3f9d5762a86afc2d2cf81890c51454c02669822d5b01af86291d363a009" dependencies = [ "bindgen", "cfg-if", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 26b8337..f92a266 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -53,8 +53,7 @@ mistralrs = { git = "https://github.com/EricLBuehler/mistral.rs.git", tag = "v0. ] } tauri-plugin-clipboard = "1.1.4" sbv2_core = { version = "0.1.4", features = ["dynamic"] } -# whisper-rs = { version = "0.11.1", features = ["metal"] } -whisper-rs = { git = "https://github.com/tazz4843/whisper-rs.git", rev = "dd0c3af", features = ["metal"] } +whisper-rs = { version = "0.13.0", features = ["metal"] } sherpa-rs = "0.5.1" [dependencies.tauri-plugin-sql] From 1b556df86f0c096042acdbd953be08aa9a83779f Mon Sep 17 00:00:00 2001 From: Kodai Aoyama Date: Mon, 30 Dec 2024 13:57:06 +0900 Subject: [PATCH 2/2] update whisper-rs --- src-tauri/Cargo.lock | 10 +++++----- src-tauri/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 4beee59..d04cecb 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -534,7 +534,7 @@ dependencies = [ "bitflags 2.5.0", "cexpr", "clang-sys", - "itertools 0.12.1", + "itertools 0.11.0", "lazy_static", "lazycell", "log", @@ -8961,18 +8961,18 @@ dependencies = [ [[package]] name = "whisper-rs" -version = "0.13.0" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d26c1da5ab769d04d87f1be58fbc91f942d67ce3f7863a787e279572ace943b" +checksum = "40b6fc553156b521663bfa8e713e7ad58c7ca262d46de9998cd7f2e4de5ba0d9" dependencies = [ "whisper-rs-sys", ] [[package]] name = "whisper-rs-sys" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "081bd3f9d5762a86afc2d2cf81890c51454c02669822d5b01af86291d363a009" +checksum = "76bab42b2c319e3a1e0280137c59368072348d3277873c7588b6466a127dca58" dependencies = [ "bindgen", "cfg-if", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 4a7c2c4..ba28de0 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -53,7 +53,7 @@ mistralrs = { git = "https://github.com/EricLBuehler/mistral.rs.git", tag = "v0. ] } tauri-plugin-clipboard = "1.1.4" sbv2_core = { version = "0.1.4", features = ["dynamic"] } -whisper-rs = { version = "0.13.0", features = ["metal"] } +whisper-rs = { version = "0.13.2", features = ["metal"] } sherpa-rs = "0.5.1" [dependencies.tauri-plugin-sql]