-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (56 loc) · 1.52 KB
/
Cargo.toml
File metadata and controls
72 lines (56 loc) · 1.52 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
[package]
name = "kartex-logging-rust"
version = "0.1.0"
edition = "2021"
[dependencies]
# Async runtime
tokio = { version = "1.45", features = ["full"] }
# Web framework
axum = { version = "0.7", features = ["ws"] }
axum-server = { version = "0.7", features = ["tls-rustls"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["fs", "cors", "trace"] }
# Database
mongodb = "3.1"
bson = { version = "2.13", features = ["chrono-0_4"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Time handling
time = "=0.3.36"
chrono = { version = "0.4", features = ["serde"] }
# Authentication
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
bcrypt = "0.15"
jsonwebtoken = "9.3"
# TLS
rustls = "0.23"
rustls-pemfile = "2.2"
# Configuration
config = "0.14"
toml = "0.8"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Utilities
uuid = { version = "1.11", features = ["v4", "serde"] }
futures = "0.3"
# WebSocket support
axum-extra = { version = "0.9", features = ["typed-header"] }
# HTTP client for webhooks
reqwest = { version = "0.12", features = ["json"] }
# Compression (for GELF)
flate2 = "1.0"
# OpenTelemetry OTLP support
tonic = "0.14"
prost = "0.14"
prost-types = "0.14"
opentelemetry-proto = { version = "0.31", features = ["gen-tonic", "logs", "trace"] }
bytes = "1.7"
# Email support
lettre = { version = "=0.11.4", default-features = false, features = ["tokio1-rustls-tls", "smtp-transport", "builder"] }