-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
49 lines (44 loc) · 1.36 KB
/
Cargo.toml
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
[package]
name = "axum-web"
version = "0.1.2"
edition = "2021"
authors = ["Sheroz Khaydarov"]
description = "A sample starter project for building REST API Web service in Rust using axum, JWT, SQLx, PostgreSQL, and Redis"
readme = "README.md"
repository = "https://github.com/sheroz/axum-web"
license = "MIT"
rust-version = "1.84"
[dependencies]
dotenvy = "0.15"
axum = { version = "0.8" }
axum-extra = { version = "0.10", features = ["typed-header"] }
tokio = { version = "1.43", features = ["full"] }
bytes = "1.9"
tower-http = { version = "0.6", features = ["cors"] }
tracing = { version = "0.1", features = ["attributes"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
http-body-util = { version = "0.1" }
hyper = { version = "1.5", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.12", features = [
"v4",
"fast-rng",
"macro-diagnostics",
"serde",
] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
redis = { version = "0.28", features = ["tokio-comp"] }
sqlx = { version = "0.8.3", features = [
"runtime-tokio-rustls",
"postgres",
"uuid",
"macros",
"chrono",
] }
jsonwebtoken = { version = "9.3" }
[dev-dependencies]
serial_test = "3.2"
reqwest = { version = "0.12", features = ["json"] }