-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (38 loc) · 914 Bytes
/
Copy pathCargo.toml
File metadata and controls
48 lines (38 loc) · 914 Bytes
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
[package]
name = "rustqueue"
version = "0.1.0"
edition = "2024"
[dependencies]
# Web framework
axum = "0.7"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.5", features = ["cors"] }
# async-trait = "0.1"
# Database
sqlx = { version = "0.7", features = [
"postgres",
"runtime-tokio",
"macros",
"uuid",
"chrono",
"json",
] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# IDs and time
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
# Error handling
anyhow = "1"
thiserror = "1"
# Email
lettre = { version = "0.11", features = ["tokio1", "tokio1-native-tls"] }
# Config
dotenvy = "0.15"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# SSE Streaming
tokio-stream = { version = "0.1", features = ["sync"] }
futures-util = "0.3"