|
1 | 1 | [package] |
2 | | -name = "groq-api-rs" |
3 | | -version = "0.2.0" |
| 2 | +name = "stt-cli" |
| 3 | +version = "0.1.0" |
4 | 4 | edition = "2021" |
5 | | -authors = ["ededddy <eddylei070300@gmail.com>"] |
| 5 | +authors = ["Abhishek Tripathi <abhishek.tripathi456@gmail.com>"] |
6 | 6 | license = "MIT OR Apache-2.0" |
7 | 7 | readme = "README.md" |
8 | | -homepage = "https://github.com/ededddy/groq-api-rs" |
9 | | -documentation = "https://docs.rs/groq-api-rs/" |
10 | | -repository = "https://github.com/ededddy/groq-api-rs" |
11 | | -description = "Client For Groq Cloud LLM APIs" |
12 | | -keywords = ["groq-api", "groq", "llm", "reqwest"] |
| 8 | +homepage = "https://github.com/TwistingTwists/stt-cli" |
| 9 | +documentation = "https://docs.rs/stt-cli/" |
| 10 | +repository = "https://github.com/TwistingTwists/stt-cli" |
| 11 | +description = "Speech to text Cli using Groq API and OpenAI API" |
| 12 | +keywords = ["stt", "stt-cli", "groq", "openai", "llm", "speech-to-text"] |
13 | 13 | categories = ["api-bindings", "web-programming", "asynchronous"] |
14 | 14 |
|
15 | 15 |
|
16 | 16 | [dependencies] |
17 | 17 | reqwest = { version = "0.12.0", features = ["multipart", "json"] } |
18 | 18 | serde = { version = "1.0.197", features = ["derive"] } |
19 | | -tokio = { version = "1.36.0", features = ["full"] } |
| 19 | +tokio = { version = "1.44.2", features = ["full"] } |
20 | 20 | serde_json = "1.0.114" |
21 | 21 | anyhow = "1.0.81" |
22 | 22 | chrono = { version = "0.4.38", features = ["serde"] } |
23 | 23 | reqwest-eventsource = "0.6.0" |
24 | 24 | futures = "0.3.30" |
25 | 25 |
|
26 | 26 | cpal = "0.15.2" |
27 | | -# wav = "1.0.0" |
28 | 27 | async-openai = "0.28.1" |
29 | 28 | ctrlc = "3.4.1" |
30 | 29 | async-trait = "0.1.73" |
|
0 commit comments