-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 894 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "audio-to-text"
version = "0.2.0"
edition = "2021"
[features]
enable-dotenv = ["dep:dotenv"]
enable-streaming = []
default = []
[dependencies]
actix = "^0.13"
actix-codec = "^0.5"
actix-cors = "^0.7"
actix-files = "^0.6"
actix-web = "^4.5"
actix-web-actors = "^4.3"
actix-multipart = "^0.6"
anyhow = "^1.0"
futures-util = "^0.3"
hound = "^3.5"
log = "^0.4"
pretty_env_logger = "^0.5"
serde_json = "^1.0"
thiserror = "^1.0"
tokio-stream = "^0.1"
tokio-tungstenite = "^0.21"
uuid = { version = "^1.8", features = ["v4"] }
whisper-rs = "^0.10"
[dependencies.serde]
version = "^1.0"
features = ["derive"]
[dependencies.tokio]
version = "^1.37"
features = ["full"]
[dependencies.utoipa]
version = "^4.2"
features = ["actix_extras"]
[dependencies.utoipa-swagger-ui]
version = "^6.0"
features = ["actix-web"]
[dependencies.dotenv]
version = "^0.15"
optional = true