Skip to content

Commit 72b62ad

Browse files
committed
adview-manager - serve - Cargo add deps
1 parent 1d27a27 commit 72b62ad

File tree

2 files changed

+130
-25
lines changed

2 files changed

+130
-25
lines changed

Cargo.lock

Lines changed: 120 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adview-manager/serve/Cargo.toml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,17 @@ publish = false
1212
# Domain
1313
adex_primitives = { version = "0.2.0", path = "../../primitives", package = "primitives", features = ["test-util"] }
1414
adview-manager = { path = "../" }
15+
16+
# Application errors
17+
anyhow = "1"
18+
# Time
1519
chrono = "0.4"
1620

1721
# Async runtime
1822
tokio = { version = "1", features = ["macros", "time", "rt-multi-thread"] }
1923

2024
# Web Server
21-
axum = "0.5"
25+
axum = {version = "0.5", features = ["headers", "macros"]}
2226

2327
# Template engine
2428
tera = { version = "1" }
@@ -29,6 +33,8 @@ wiremock = { version = "0.5" }
2933
# (De)Serialization
3034
serde = { version = "^1.0", features = ["derive"] }
3135

32-
# Logging
33-
log = "0.4"
34-
env_logger = { version = "0.9" }
36+
# Tracing
37+
tracing = "0.1"
38+
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
39+
40+
pretty_assertions = "1"

0 commit comments

Comments
 (0)