Skip to content

Commit 1d0973c

Browse files
committed
Cargo - Update deps
1 parent 853c769 commit 1d0973c

File tree

5 files changed

+36
-28
lines changed

5 files changed

+36
-28
lines changed

Cargo.lock

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

primitives/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ serde_json = "1.0"
4040
serde-hex = "0.1"
4141
serde_millis = "0.1"
4242
# Used prefixes on field for targeting::Input, and `campaign::Active`
43-
serde_with = "1"
43+
serde_with = "2"
4444
# Configuration
4545
toml = "0.5"
4646
# Logging
@@ -83,4 +83,4 @@ once_cell = "1"
8383
[dev-dependencies]
8484
pretty_assertions = "1"
8585
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
86-
serde_qs = "0.9"
86+
serde_qs = "0.10"

sentry/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ edition = "2021"
1111

1212
default-run = "sentry"
1313

14+
[package.metadata.docs.rs]
15+
all-features = true
16+
rustdoc-args = ["--cfg", "docsrs"]
17+
1418
[[bin]]
1519
name = "seed"
1620
test = false # Is tested by default.
@@ -37,7 +41,7 @@ hex = "0.4"
3741
# CLI
3842
clap = { version = "3", features = ["cargo"] }
3943
# Server
40-
tokio = { version = "1", features = ["macros", "time", "rt-multi-thread"] }
44+
tokio = { version = "1", features = ["macros", "time", "rt-multi-thread", "signal"] }
4145
hyper = { version = "0.14", features = ["stream", "runtime", "http1", "http2", "server"] }
4246
simple-hyper-server-tls = { version = "0.3", features = ["tls-rustls"] }
4347
regex = "1"
@@ -63,7 +67,7 @@ envy = "0.4"
6367
# Serde
6468
serde = { version = "1", features = ["derive"] }
6569
serde_json = "1"
66-
serde_qs = "0.9"
70+
serde_qs = "0.10"
6771
# Other
6872
thiserror = "1"
6973
once_cell = "1"
@@ -77,7 +81,3 @@ pretty_assertions = "1"
7781

7882
primitives = { path = "../primitives", features = ["postgres", "test-util"] }
7983
adapter = { version = "0.2", path = "../adapter", features = ["test-util"] }
80-
81-
[package.metadata.docs.rs]
82-
all-features = true
83-
rustdoc-args = ["--cfg", "docsrs"]

test_harness/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
2828
# probably needed for Relayer calls
2929
# wiremock = "0.5"
3030
pretty_assertions = "^1.0"
31-
serde_qs = "^0.9"
31+
serde_qs = "^0.10"

validator_worker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ thiserror = "1"
3737
# (De)Serialization
3838
serde = { version = "1", features = ["derive"] }
3939
serde_json = "1"
40-
serde_qs = "0.9"
40+
serde_qs = "0.10"
4141
toml = "0.5"
4242
# CLI
4343
clap = { version = "3", features = ["cargo"] }

0 commit comments

Comments
 (0)