forked from jBernavaPrah/azure-speech-sdk-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (61 loc) · 2.12 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "azure-speech"
version = "0.3.2"
authors = ["Jure Bernava Prah <[email protected]>"]
description = "Pure Rust SDK for Azure Speech Service"
edition = "2021"
rust-version = "1.71.0"
license = "MIT"
readme = "readme.md"
repository = "https://github.com/jbernavaprah/azure-speech-sdk-rs"
homepage = "https://github.com/jbernavaprah/azure-speech-sdk-rs"
include = [
"Cargo.toml",
"readme.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"src/*",
"doc/*",
]
categories = ["multimedia", "multimedia::audio", "text-processing"]
keywords = [
"azure-speech",
"sdk",
"cognitive",
"recognition",
"synthesizing"
]
[dependencies]
tokio = { version = "1.40", features = ["sync", "macros", "rt"] }
tracing = { version = "0.1", default-features = false }
tokio-websockets = { version = "0.10", features = ["client"] }
futures-util = { version = "0.3", default-features = false, features = ["std", "sink"] }
async-trait = "0.1"
tokio-stream = { version = "0.1", features = ["sync"] }
pin-project-lite = "0.2.14"
url = { version = "2", features = ["serde"] }
uuid = { version = "1.7.0", features = ["v4", "fast-rng"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
os_info = "3"
ssml = "0.1.0"
log = "0.4.22"
[features]
default = ["tws-rustls-native-roots", "tws-fastrand", "tws-smol-sha1"]
tws-rustls-native-roots = ["tokio-websockets/rustls-webpki-roots", "tokio-websockets/ring"]
tws-rustls-webpki-roots = ["tokio-websockets/rustls-native-roots", "tokio-websockets/ring"]
tws-native-tls = ["tokio-websockets/native-tls"]
tws-smol-sha1 = ["tokio-websockets/sha1_smol"]
tws-fastrand = ["tokio-websockets/fastrand"]
[dev-dependencies]
tokio-websockets = { version = "0.10.1", features = ["server"] }
http = "1.1.0"
tokio = { version = "1.36.0", features = ["full"] }
rodio = { version = "0.19.0", features = ["symphonia", "symphonia-wav", "symphonia-mp3"], default-features = false }
hound = "3.5"
cpal = "0.15.3"
reqwest = { version = "0.12", features = ["stream"] }
iobuffer = "0.2.0"
tokio-util = "0.7.10"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }