-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (65 loc) · 1.71 KB
/
Cargo.toml
File metadata and controls
86 lines (65 loc) · 1.71 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "tempo-webhooks"
version = "0.1.0"
edition = "2021"
[dependencies]
# Blockchain
alloy = { version = "0.6", features = ["full"] }
# Web server
axum = { version = "0.7", features = ["macros"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace", "timeout"] }
# Async runtime
tokio = { version = "1", features = ["full"] }
futures = "0.3"
futures-util = "0.3"
# Database
sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-native-tls", "uuid", "chrono", "json", "bigdecimal"] }
# Redis
redis = { version = "0.25", features = ["tokio-comp", "connection-manager"] }
# Message queue
async-nats = "0.35"
# HTTP client (for webhooks)
reqwest = { version = "0.12", features = ["json"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Crypto (for HMAC signatures)
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
rand = "0.8"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Retry logic
backoff = "0.4"
# Logging & metrics
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
prometheus = "0.13"
# Utilities
uuid = { version = "1.0", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
dotenv = "0.15"
regex = "1.10"
# Environment variables
envy = "0.4"
# Lazy static
lazy_static = "1.4"
# JWT
jsonwebtoken = "9.2"
# Rate limiting
governor = "0.6"
# Password hashing
bcrypt = "0.15"
sentry = "0.46.2"
url = "2.5.8"
# Email
lettre = { version = "0.11", features = ["tokio1", "tokio1-native-tls", "smtp-transport", "builder"] }
# Cookies
tower-sessions = "0.12"
tower-sessions-sqlx-store = { version = "0.12", features = ["postgres"] }
argon2 = "0.5"
[dev-dependencies]
tokio-test = "0.4"