Skip to content

Commit 0ae4619

Browse files
authored
Update slog-term (#166)
* update `slog-term` and remove patch * validator_worker - Cargo.toml - remove `slog` as we re-export it from `primitives` * validator_worker - Cargo.toml - remove `futures-locks`
1 parent 65d6c32 commit 0ae4619

File tree

4 files changed

+6
-29
lines changed

4 files changed

+6
-29
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,3 @@ members = [
77
"sentry",
88
"adview-manager",
99
]
10-
11-
[patch.crates-io]
12-
slog-term = { git = "https://github.com/slog-rs/term", branch = "master"}

primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ serde-hex = "0.1.0"
1414
toml = "0.5"
1515
# Logging
1616
slog = { version = "^2.5.2" , features = ["max_level_trace"] }
17-
slog-term = "^2.4.1"
17+
slog-term = "^2.4.2"
1818
slog-async = "^2.3.0"
1919
# Domain
2020
chrono = { version = "0.4", features = ["serde"] }

validator_worker/Cargo.toml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ byteorder = "1.3"
2121
# Futures
2222
futures-preview = { version = "=0.3.0-alpha.19", features = ["compat"]}
2323
futures_legacy = { version = "0.1.20", package = "futures" }
24-
futures-locks = "0.3"
2524
# Concurrency
2625
tokio = { version = "=0.1.19" }
26+
async-std = "^0.99.10"
2727
# API client
2828
reqwest = "0.9.18"
2929
# Configuration
@@ -34,8 +34,3 @@ serde_json = "1.0"
3434
toml = "0.5"
3535
# CLI
3636
clap = "2.33.0"
37-
# Logger
38-
slog = { version = "^2.2.3" , features = ["max_level_trace"] }
39-
slog-term = "^2.4.0"
40-
slog-async = "^2.3.0"
41-
async-std = "^0.99.10"

0 commit comments

Comments
 (0)