Spaces:
Sleeping
Sleeping
whisper-rs 0.9.0-rc.2 can't be compiled in macOS
Browse files- Cargo.lock +4 -4
- Cargo.toml +7 -3
Cargo.lock
CHANGED
@@ -2428,18 +2428,18 @@ dependencies = [
|
|
2428 |
|
2429 |
[[package]]
|
2430 |
name = "whisper-rs"
|
2431 |
-
version = "0.
|
2432 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2433 |
-
checksum = "
|
2434 |
dependencies = [
|
2435 |
"whisper-rs-sys",
|
2436 |
]
|
2437 |
|
2438 |
[[package]]
|
2439 |
name = "whisper-rs-sys"
|
2440 |
-
version = "0.
|
2441 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2442 |
-
checksum = "
|
2443 |
dependencies = [
|
2444 |
"bindgen",
|
2445 |
"cfg-if",
|
|
|
2428 |
|
2429 |
[[package]]
|
2430 |
name = "whisper-rs"
|
2431 |
+
version = "0.8.0"
|
2432 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2433 |
+
checksum = "2c950fb18ad556b053ba615b88fd4d01ed6020be740c3371eb0fc4aec64a0639"
|
2434 |
dependencies = [
|
2435 |
"whisper-rs-sys",
|
2436 |
]
|
2437 |
|
2438 |
[[package]]
|
2439 |
name = "whisper-rs-sys"
|
2440 |
+
version = "0.6.1"
|
2441 |
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2442 |
+
checksum = "094a5bd86f6f52562bbc74c28f27cd80197e54656cfb7213cf4ba37b5246cc9e"
|
2443 |
dependencies = [
|
2444 |
"bindgen",
|
2445 |
"cfg-if",
|
Cargo.toml
CHANGED
@@ -20,17 +20,21 @@ tokio = { version = "1.33", features = ["macros", "rt-multi-thread", "sync"] }
|
|
20 |
tokio-stream = "0.1"
|
21 |
tracing = "0.1"
|
22 |
tracing-subscriber = "0.3"
|
23 |
-
whisper-rs = "0.
|
24 |
-
whisper-rs-sys = "0.
|
25 |
|
26 |
[dependencies.poem]
|
27 |
version = "1.3"
|
28 |
features = ["websocket", "static-files"]
|
29 |
|
30 |
[target.aarch64-apple-darwin.dependencies.whisper-rs]
|
31 |
-
version ="0.
|
32 |
features = ["coreml"]
|
33 |
|
|
|
|
|
|
|
|
|
34 |
[target.x86_64-unknown-linux-gnu.dependencies.whisper-rs]
|
35 |
features = ["cuda"]
|
36 |
|
|
|
20 |
tokio-stream = "0.1"
|
21 |
tracing = "0.1"
|
22 |
tracing-subscriber = "0.3"
|
23 |
+
whisper-rs = "0.8"
|
24 |
+
whisper-rs-sys = "0.6"
|
25 |
|
26 |
[dependencies.poem]
|
27 |
version = "1.3"
|
28 |
features = ["websocket", "static-files"]
|
29 |
|
30 |
[target.aarch64-apple-darwin.dependencies.whisper-rs]
|
31 |
+
version = "0.8"
|
32 |
features = ["coreml"]
|
33 |
|
34 |
+
[target.aarch64-apple-darwin.dependencies.whisper-rs-sys]
|
35 |
+
version = "0.6"
|
36 |
+
|
37 |
+
|
38 |
[target.x86_64-unknown-linux-gnu.dependencies.whisper-rs]
|
39 |
features = ["cuda"]
|
40 |
|