From aa8c9ccbeac0e194076b9a86aa33bf4d42494a68 Mon Sep 17 00:00:00 2001 From: Kodai Aoyama Date: Wed, 6 Nov 2024 22:29:25 +0900 Subject: [PATCH] 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]