-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
76 lines (72 loc) · 1.84 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
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
[package]
name = "zero2prod"
version = "0.1.0"
license = "MIT OR Apache-2.0"
edition = "2021"
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "zero2prod"
[dependencies]
anyhow = "1.0.93"
argon2 = { version = "0.5.3", features = ["std"] }
axum = { version = "0.7.7", features = ["macros", "tracing"] }
axum-extra = { version = "0.9.4", features = ["cookie", "typed-header"] }
axum-messages = "0.7.0"
axum_session = "0.14.4"
axum_session_redispool = "0.3.0"
backtrace_printer = "1.3.0"
base64 = "0.22.1"
bytes = "1.8.0"
chrono = { version = "0.4.38", features = ["serde"] }
colored = "2.1.0"
config = "0.14.1"
hyper = "1.5.0"
mime = "0.3.17"
rand = { version = "0.8.5", features = ["std_rng"] }
redis = "0.27.5"
redis_pool = "0.6.0"
regex = "1.11.1"
reqwest = { version = "0.12.9", features = ["json", "rustls-tls"] }
secrecy = { version = "0.8", features = ["serde"] }
serde = { version = "1.0.213", features = ["derive"] }
serde-aux = "4.5.0"
serde_json = "1.0.132"
serde_urlencoded = "0.7.1"
serde_variant = "0.1.3"
sqlx = { version = "0.8.2", features = [
"postgres",
"runtime-tokio",
"macros",
"chrono",
"migrate",
"uuid",
] }
tera = "1.20.0"
thiserror = "1.0.66"
tokio = { version = "1.41.0", features = ["rt-multi-thread", "macros"] }
tower = "0.5.1"
tower-http = { version = "0.6.1", features = [
"compression-full",
"trace",
"add-extension",
"set-header",
] }
tower-sessions = "0.13.0"
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
unicode-segmentation = "1.12.0"
urlencoding = "2"
uuid = { version = "1.11.0", features = ["serde", "v4"] }
validator = "0.18.1"
[dev-dependencies]
claims = "0.7.1"
fake = "3.0.0"
http-body-util = "0.1.2"
linkify = "0.10.0"
once_cell = "1.20.2"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
wiremock = "0.6.2"