-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
30 lines (28 loc) · 955 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
license = "MIT"
edition = "2021"
version = "0.1.0"
name = "whisper_cli"
readme = "README.md"
homepage = "https://github.com/m1guelpf/whisper-cli-rs"
description = "A command line interface for whisper-rs"
repository = "https://github.com/m1guelpf/whisper-cli-rs"
authors = ["Miguel Piedrafita <[email protected]>"]
keywords = ["whisper", "openai", "cli", "transcribe"]
categories = ["command-line-utilities"]
[[bin]]
name = "whisper"
path = "src/main.rs"
[dependencies]
num = "0.4.1"
dirs = "5.0.1"
anyhow = "1.0.75"
indicatif = "0.17.6"
whisper-rs = "0.8.0"
futures-util = "0.3.28"
uuid = { version = "1.4.1", features = ["v4"] }
tokio = { version = "1.32.0", features = ["full"] }
clap = { version = "4.4.3", features = ["derive"] }
serde = { version = "1.0.188", features = ["derive"] }
reqwest = { version = "0.11.20", features = ["blocking", "stream"] }
audrey = { version = "0.3.0", default-features = false, features = ["wav"] }