-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (39 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
52 lines (39 loc) · 1.17 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
[package]
name = "videogame-library-backend-rust"
version = "0.1.0"
edition = "2021"
[dependencies]
# Web Framework
axum = "0.7"
tokio = { version = "1.0", features = ["full"] }
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.5", features = ["cors", "trace"] }
axum-extra = { version = "0.9", features = ["typed-header"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Database (SQLite)
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "sqlite", "uuid", "chrono", "macros"] }
# Date and Time
chrono = { version = "0.4", features = ["serde"] }
# UUID
uuid = { version = "1.0", features = ["serde", "v4"] }
# Async Traits
async-trait = "0.1"
# Environment variables
dotenvy = "0.15"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Security
bcrypt = "0.15"
jsonwebtoken = "9.2"
# HTTP Client
reqwest = { version = "0.11", features = ["json"] }
# Kafka (Removed to avoid build issues on Windows without C++ tools)
# rdkafka = { version = "0.36", features = ["cmake-build"] }
[dev-dependencies]
mockall = "0.12"