Skip to content
This repository was archived by the owner on Oct 17, 2022. It is now read-only.

Commit 720e21a

Browse files
chore(deps): bump serde from 1.0.143 to 1.0.144 (#832)
1 parent 86c494e commit 720e21a

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

Cargo.lock

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

config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77

88
[dependencies]
99
multiaddr = "0.14.0"
10-
serde = { version = "1.0.143", features = ["derive"] }
10+
serde = { version = "1.0.144", features = ["derive"] }
1111
serde_json = "1.0.83"
1212
thiserror = "1.0.32"
1313
tracing = "0.1.36"

consensus/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ blake2 = "0.9"
1212
bytes = "1.2.1"
1313
match_opt = "0.1.2"
1414
rand = { version = "0.8.5", optional = true }
15-
serde = { version = "1.0.143", features = ["derive"] }
15+
serde = { version = "1.0.144", features = ["derive"] }
1616
store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "8d090689be14078f2ca41c356e7bbc0af21f73ab" }
1717
thiserror = "1.0.32"
1818
tokio = { version = "1.20.1", features = ["sync"] }

crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ hex = "0.4.3"
1515
hkdf = { version = "0.12.3", features = ["std"] }
1616
rand = { version = "0.8.5", features = ["std"] }
1717
rust_secp256k1 = { version = "0.24.0", package = "secp256k1", features = ["recovery", "rand-std", "bitcoin_hashes", "global-context"] }
18-
serde = { version = "1.0.143", features = ["derive"] }
18+
serde = { version = "1.0.144", features = ["derive"] }
1919
serde_bytes = "0.11.7"
2020
serde_with = "2.0.0"
2121
signature = "1.6.0"

dag/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ either = "1.7.0"
1414
itertools = "0.10.3"
1515
once_cell = "1.13.1"
1616
rayon = "1.5.3"
17-
serde = "1.0.143"
17+
serde = "1.0.144"
1818
thiserror = "1.0.32"
1919
workspace-hack = { version = "0.1", path = "../workspace-hack" }
2020

executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "574fb8fa
1616
futures = "0.3.23"
1717
multiaddr = "0.14.0"
1818
primary = { path = "../primary" }
19-
serde = { version = "1.0.143", features = ["derive"] }
19+
serde = { version = "1.0.144", features = ["derive"] }
2020
thiserror = "1.0.32"
2121
tokio = { version = "1.20.1", features = ["sync"] }
2222
tokio-util = { version = "0.7.3", features = ["codec"] }

network/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ tracing = "0.1.36"
2323
types = { path = "../types" }
2424

2525
mysten-network = { git = "https://github.com/mystenlabs/mysten-infra.git", rev = "8d090689be14078f2ca41c356e7bbc0af21f73ab" }
26-
serde = "1.0.143"
26+
serde = "1.0.144"
2727
workspace-hack = { version = "0.1", path = "../workspace-hack" }
2828
eyre = "0.6.8"
2929

primary/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ once_cell = "1.13.1"
2424
prometheus = "0.13.1"
2525
prost = "0.10.4"
2626
rand = { version = "0.8.5", features = ["small_rng"] }
27-
serde = { version = "1.0.143", features = ["derive"] }
27+
serde = { version = "1.0.144", features = ["derive"] }
2828
thiserror = "1.0.32"
2929
tokio = { version = "1.20.1", features = ["sync", "rt", "macros"] }
3030
tokio-util = { version = "0.7.3", features = ["codec"] }

test_utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ itertools = "0.10.3"
1919
multiaddr = "0.14.0"
2020
prometheus = "0.13.1"
2121
rand = "0.8.5"
22-
serde = { version = "1.0.143", features = ["derive"] }
22+
serde = { version = "1.0.144", features = ["derive"] }
2323
tempfile = "3.3.0"
2424
thiserror = "1.0.32"
2525
tokio = { version = "1.20.1", features = ["sync", "rt", "macros"] }

types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ proptest = "1.0.0"
1919
proptest-derive = "0.3.0"
2020
prost = "0.10.4"
2121
rand = "0.8.5"
22-
serde = { version = "1.0.143", features = ["derive"] }
22+
serde = { version = "1.0.144", features = ["derive"] }
2323
signature = "1.6.0"
2424
store = { git = "https://github.com/mystenlabs/mysten-infra.git", package = "typed-store", rev = "8d090689be14078f2ca41c356e7bbc0af21f73ab" }
2525
thiserror = "1.0.32"

0 commit comments

Comments
 (0)