-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
61 lines (53 loc) · 1.19 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
[package]
name = "tts-service"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = "thin"
[dependencies]
serde_json = "1"
tracing = "0.1"
sha2 = "0.10"
rand = "0.8"
anyhow = "1"
base64 = "0.22"
ipgen = "1"
bytes = "1"
jsonwebtoken = "9"
mp3-duration = "0.1"
itertools = "0.13"
aws-sdk-polly = "1.7.0"
small-fixed-array = { version = "0.4.0", features = ["serde"] }
memchr = "2.7.4"
aformat = "0.1.4"
mini-moka = { version = "0.10.3", features = ["sync"] }
arc-swap = "1.7.1"
[dependencies.tracing-subscriber]
version = "0.3"
default-features = false
features = ["smallvec", "fmt", "ansi", "parking_lot"]
[dependencies.axum]
version = "0.7"
default-features = false
features = ["http1", "http2", "json", "query", "tokio"]
[dependencies.tokio]
version = "1"
features = [
"sync",
"time",
"macros",
"rt-multi-thread",
"parking_lot",
"signal",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls", "json"]
default-features = false
[dependencies.aws-config]
version = "1.1.1"
features = ["behavior-version-latest"]