-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (66 loc) · 1.82 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
[package]
name = "zero2prod"
version = "0.1.0"
edition = "2021"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "zero2prod"
[workspace]
members = [".", "entity", "migration"]
[dependencies]
anyhow = "1.0.80"
argon2 = { version = "0.5.3", features = ["std"] }
axum = { version = "0.7.4", features = ["http2", "macros"] }
axum-macros = { version = "0.4.1" }
axum-messages = "0.5.0"
config = "0.14.0"
entity = { path = "entity" }
handlebars = "5.1.0"
migration = { path = "migration" }
mimalloc = "0.1.39"
once_cell = "1.19.0"
rand = { version = "0.8.5", features = ["std_rng"] }
reqwest = { version = "0.11.24", default-features = false, features = [
"json",
"rustls-tls",
"cookies",
] }
sea-orm = { version = "0.12.14", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros",
] }
secrecy = { version = "0.8.0", features = ["serde"] }
serde = { version = "1.0.197", features = ["derive"] }
serde-aux = "4.5.0"
serde_json = "1.0.114"
strum = { version = "0.26", features = ["derive"] }
thiserror = "1.0.57"
time = "0.3.34"
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
tower = "0.4.13"
tower-http = { version = "0.5.1", features = ["cors", "trace"] }
tower-sessions = "0.11.0"
tower-sessions-redis-store = "0.11.0"
tracing = { version = "0.1.40", features = ["log"] }
tracing-bunyan-formatter = "0.3.9"
tracing-subscriber = { version = "0.3.18", features = [
"registry",
"env-filter",
] }
unicode-segmentation = "1.11.0"
urlencoding = "2.1.3"
uuid = { version = "1.7.0", features = ["v4", "serde"] }
validator = "0.17.0"
[dev-dependencies]
claims = "0.7.1"
fake = "2.9.2"
linkify = "0.10.0"
proptest = "1.4.0"
wiremock = "0.6"
[profile.release]
strip = "symbols"