-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (42 loc) · 1.27 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
[workspace]
members = ["bfsrv"]
resolver = "2"
[workspace.dependencies]
axum = { version = "0.7.5", features = ["multipart", "ws"] }
axum-extra = "0.9.3"
base64 = "0.22.1"
clap = { version = "4.5.4", features = ["derive", "env"] }
deadpool-postgres = { version = "0.13.2" }
env_logger = "0.11.3"
futures = "0.3.30"
hound = "3.5.1"
lettre = { version = "0.11.7", features = [
"serde",
"tokio1",
"tokio1-native-tls",
] }
log = "0.4.21"
ogg = { version = "0.9.1", features = ["async"] }
postgres-types = { version = "0.2.6", features = ["derive"] }
reqwest = { version = "0.12.4", features = ["json", "multipart"] }
rubato = "0.15.0"
rust_decimal = { version = "1.35.0", features = ["db-postgres"] }
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
symphonia = "0.5.4"
thiserror = "1.0.59"
time = { version = "0.3.36", features = ["serde-well-known"] }
tokio = { version = "1.37.0", features = [
"macros",
"rt-multi-thread",
"signal",
] }
tokio-postgres = { version = "0.7.10", features = [
"with-serde_json-1",
"with-time-0_3",
"with-uuid-1",
] }
tokio-tungstenite = "0.21.0"
tower-http = { version = "0.5.2", features = ["cors"] }
url = { version = "2.5.0", features = ["serde"] }
uuid = { version = "1.8.0", features = ["serde", "v4"] }