-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (51 loc) · 1.45 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (51 loc) · 1.45 KB
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
[package]
name = "messenger_service"
version = "0.2.0"
edition = "2024"
[dependencies]
log = "0.4.27"
simplelog = "0.12.2"
dotenv = "0.15.0"
chrono = "0.4.41"
uuid = { version = "1.18.0", features = ["serde", "v4"] }
bytes = "1.10.1"
thiserror = "2.0.14"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
text-splitter = "0.27.0"
tokio = { version = "1.47.1", features = ["macros", "sync", "rt-multi-thread"] }
async-stream = "0.3.6"
async-trait = "0.1.88"
futures = { version = "0.3.31", default-features = false }
axum = { version = "0.8.4", features = ["ws", "macros"] }
axum-server = { version = "0.7.2", features = ["tls-openssl"] }
axum-extra = { version = "0.10.1", features = [
"cookie",
"query",
"typed-header",
] }
tower = "0.5.2"
tower-http = { version = "0.6.6", features = ["cors", "fs", "trace"] }
reqwest = { version = "0.12.23", features = ["json"] }
url = "2.5.4"
jsonwebtoken = "9.3.1"
oauth2 = { version = "5.0.0", features = ["reqwest-blocking"] }
maud = { version = "0.27.0", features = ["axum"] }
identicon-rs = "7.0.0"
diesel = { version = "2.2.12", features = [
"chrono",
"postgres",
"r2d2",
"uuid",
] }
r2d2 = "0.8.10"
redis = { version = "0.32.5", features = [
"connection-manager",
"tokio-comp",
"json",
] }
async-nats = "0.42.0"
minio = "0.3.0"
email_address = "0.2.9"
[dev-dependencies]
testcontainers-modules = { version = "0.12.1", features = ["minio", "nats", "postgres", "redis"] }