Skip to content

Commit

Permalink
build(deps): bump serde from 1.0.140 to 1.0.141 (MystenLabs#3706)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Aug 2, 2022
1 parent 3038839 commit a27f02c
Show file tree
Hide file tree
Showing 17 changed files with 131 additions and 131 deletions.
230 changes: 115 additions & 115 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion crates/sui-benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ async-trait = "0.1.57"
rayon = "1.5.3"
anyhow = { version = "1.0.57", features = ["backtrace"] }
futures = "0.3.21"
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
serde_json = "1.0.80"
tempfile = "3.3.0"
tokio = { version = "1.20.1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-cluster-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
edition = "2021"

[dependencies]
serde = { version = "1.0.139", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
futures = "0.3.21"
serde_json = "1.0.80"
tempfile = "3.3.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ bcs = "0.1.3"
arc-swap = "1.5.1"
camino = "1.0.9"
anyhow = { version = "1.0.58", features = ["backtrace"] }
serde = { version = "1.0.140", features = ["derive", "rc"] }
serde = { version = "1.0.141", features = ["derive", "rc"] }
serde_with = "1.14.0"
serde_yaml = "0.8.26"
rand = "0.7.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ bcs = "0.1.3"
chrono = "0.4.0"
futures = "0.3.21"
bytes = "1.2.1"
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
serde_json = "1.0.79"
serde_with = "1.14.0"
tokio = { version = "1.20.1", features = ["full", "tracing", "test-util"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-faucet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ clap = { version = "3.1.17", features = ["derive"] }
thiserror = "1.0.31"
tokio = { version = "1.20.1", features = ["full"] }
tracing = "0.1.36"
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
tower = { version = "0.4.12", features = ["util", "timeout", "load-shed", "limit"] }
tower-http = { version = "0.3.4", features = ["cors"] }
http = { version = "0.2.8" }
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
[dependencies]
anyhow = { version = "1.0.58", features = ["backtrace"] }
async-trait = "0.1.57"
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
tracing = "0.1.36"
tokio = { version = "1.20.1", features = ["full"] }
futures = "0.3.21"
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-json-rpc-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"
async-trait = "0.1.57"
anyhow = "1.0.58"
schemars = { version = "0.8.10", features = ["either"] }
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
serde_json = "1.0.80"
serde_with = { version = "1.14.0", features = ["hex"] }
colored = "2.0.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-json-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ prometheus = "0.13.1"
anyhow = "1.0.58"
tracing = "0.1.36"
async-trait = "0.1.57"
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
futures = "0.3.21"
tokio = { version = "1.20.1", features = ["full"] }
signature = "1.5.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"
anyhow = { version = "1.0.58", features = ["backtrace"] }
bcs = "0.1.3"
hex = "0.4.3"
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
serde_json = "1.0.79"
schemars = "0.8.10"

Expand Down
2 changes: 1 addition & 1 deletion crates/sui-open-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"

[dependencies]
schemars = "0.8.10"
serde = "1.0.140"
serde = "1.0.141"
workspace-hack = { path = "../workspace-hack"}

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"
anyhow = "1.0.58"
async-trait = "0.1.57"
jsonrpsee = { version = "0.15.1", features = ["full"] }
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
serde_json = "1.0.80"
futures-core = "0.3.21"
futures = "0.3.21"
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ enum_dispatch = "^0.3"
fdlimit = "0.2.1"
futures = "0.3.21"
flexstr = "^0.9"
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
serde_json = "1.0.80"
tokio = { version = "1.20.1", features = ["full", "tracing"] }
tokio-stream = "^0.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-telemetry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
edition = "2021"

[dependencies]
serde = { version = "1.0.139", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
reqwest = { version = "0.11.10", features = ["json"] }
tokio = { version = "1.17.0", features = ["full", "tracing"] }
tracing = "0.1.36"
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ tempfile = "3.3.0"
narwhal-executor = { git = "https://github.com/MystenLabs/narwhal", rev = "259a37b487570763575e6b28f8b8057b16b3e916", package = "executor" }
serde_with = { version = "1.14.0", features = ["hex"] }
sui-storage = { path = "../sui-storage" }
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }

sui-core = { path = "../sui-core" }
sui-config = { path = "../sui-config" }
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bcs = "0.1.3"
itertools = "0.10.3"
once_cell = "1.11.0"
rand = "0.7.3"
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
curve25519-dalek = { version = "3", default-features = false, features = ["serde"] }
serde-name = "0.2.1"
sha2 = "0.9.9"
Expand Down
2 changes: 1 addition & 1 deletion crates/sui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"

[dependencies]
anyhow = { version = "1.0.58", features = ["backtrace"] }
serde = { version = "1.0.140", features = ["derive"] }
serde = { version = "1.0.141", features = ["derive"] }
serde_json = "1.0.80"
signature = "1.5.0"
camino = "1.0.9"
Expand Down

0 comments on commit a27f02c

Please sign in to comment.