@@ -5,8 +5,14 @@ authors = ["Deepgram <developers@deepgram.com>"]
5
5
edition = " 2021"
6
6
description = " Official Rust SDK for Deepgram's automated speech recognition APIs."
7
7
license = " MIT"
8
- repository = " https://github.com/deepgram-devs/deepgram-rust-sdk"
9
- keywords = [" transcription" , " voice-ai" , " text-to-speech" , " speech-to-text" ," asr" ]
8
+ repository = " https://github.com/deepgram/deepgram-rust-sdk"
9
+ keywords = [
10
+ " transcription" ,
11
+ " voice-ai" ,
12
+ " text-to-speech" ,
13
+ " speech-to-text" ,
14
+ " asr" ,
15
+ ]
10
16
categories = [" api-bindings" , " multimedia::audio" ]
11
17
12
18
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -18,15 +24,21 @@ bytes = "1"
18
24
futures = " 0.3"
19
25
http = " 0.2"
20
26
pin-project = " 1"
21
- reqwest = { version = " 0.11.22" , default-features = false , features = [" json" , " rustls-tls" , " stream" ] }
27
+ reqwest = { version = " 0.11.22" , default-features = false , features = [
28
+ " json" ,
29
+ " rustls-tls" ,
30
+ " stream" ,
31
+ ] }
22
32
rodio = { version = " 0.17.0" , optional = true }
23
33
serde = { version = " 1.0.25" , features = [" derive" ] }
24
34
serde_json = " 1"
25
35
serde_urlencoded = " 0.7"
26
36
thiserror = " 1"
27
37
tokio = { version = " 1.38.0" , features = [" full" ] }
28
38
tokio-stream = " 0.1.15"
29
- tokio-tungstenite = { version = " 0.20.1" , features = [" rustls-tls-webpki-roots" ], optional = true }
39
+ tokio-tungstenite = { version = " 0.20.1" , features = [
40
+ " rustls-tls-webpki-roots" ,
41
+ ], optional = true }
30
42
tokio-util = { version = " 0.7.1" , features = [" codec" , " io" ] }
31
43
tungstenite = { version = " 0.20.1" , optional = true }
32
44
url = " 2"
0 commit comments