-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
61 lines (58 loc) · 1.35 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
[package]
name = "zero2prod"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1"
async-trait = "0.1.52"
axum = "0.4.6"
chrono = "0.4.19"
config = "0.12.0"
http = "0.2.6"
hyper = "0.14.17"
log = "0.4.14"
rand = { version = "0.8.5", features = ["std_rng"] }
reqwest = { version = "0.11.9", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1", features = ["derive"] }
serde-aux = "3"
serde_with = "1"
clap = { version = "3.1.2", features = ["derive"] }
thiserror = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tower = "0.4.12"
tower-http = { version = "0.2.3", features = ["trace", "request-id", "util"] }
tracing = { version = "0.1.31", features = ["log"] }
tracing-bunyan-formatter = "0.3.2"
tracing-futures = "0.2.5"
tracing-log = "0.1.2"
tracing-subscriber = { version = "0.3.9", features = [
"registry",
"env-filter",
] }
uuid = { version = "0.8.2", features = ["v4"] }
unicode-segmentation = "1.9.0"
validator = "0.14.0"
[dependencies.sqlx]
version = "0.5.11"
default-features = false
features = [
"runtime-tokio-rustls",
"macros",
"postgres",
"uuid",
"chrono",
"migrate",
"offline",
]
[dev-dependencies]
claim = "0.5.0"
fake = "2.4.3"
linkify = "0.8.0"
once_cell = "1.9.0"
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
serde_json = "1"
wiremock = "0.5.10"