Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/master' into lexnv/md15_expose_m…
Browse files Browse the repository at this point in the history
…d_at_versions
  • Loading branch information
parity-processbot committed Mar 15, 2023
2 parents f5cbf2a + 5e23bb7 commit 7ea8bfc
Show file tree
Hide file tree
Showing 15 changed files with 91 additions and 59 deletions.
98 changes: 61 additions & 37 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

[dependencies]
clap = { version = "4.1.6", features = ["derive"] }
clap = { version = "4.1.8", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.0.0" }
url = "2.3.1"

Expand Down
2 changes: 1 addition & 1 deletion client/consensus/aura/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

[dependencies]
async-trait = "0.1.63"
async-trait = "0.1.66"
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
futures = "0.3.26"
tracing = "0.1.37"
Expand Down
2 changes: 1 addition & 1 deletion client/consensus/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

[dependencies]
async-trait = "0.1.63"
async-trait = "0.1.66"
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
dyn-clone = "1.0.11"
futures = "0.3.26"
Expand Down
2 changes: 1 addition & 1 deletion client/consensus/relay-chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Parity Technologies <[email protected]>"]
edition = "2021"

[dependencies]
async-trait = "0.1.63"
async-trait = "0.1.66"
futures = "0.3.26"
parking_lot = "0.12.1"
tracing = "0.1.37"
Expand Down
4 changes: 2 additions & 2 deletions client/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "Cumulus-specific networking protocol"
edition = "2021"

[dependencies]
async-trait = "0.1.63"
async-trait = "0.1.66"
codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive" ] }
futures = "0.3.26"
futures-timer = "3.0.2"
Expand All @@ -31,7 +31,7 @@ cumulus-relay-chain-interface = { path = "../relay-chain-interface" }

[dev-dependencies]
portpicker = "0.1.1"
tokio = { version = "1.25.0", features = ["macros"] }
tokio = { version = "1.26.0", features = ["macros"] }
url = "2.3.1"

# Substrate
Expand Down
4 changes: 2 additions & 2 deletions client/pov-recovery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch =
# Cumulus
cumulus-primitives-core = { path = "../../primitives/core" }
cumulus-relay-chain-interface = {path = "../relay-chain-interface"}
async-trait = "0.1.64"
async-trait = "0.1.66"

[dev-dependencies]
tokio = { version = "1.25.0", features = ["macros"] }
tokio = { version = "1.26.0", features = ["macros"] }
portpicker = "0.1.1"

# Cumulus
Expand Down
2 changes: 1 addition & 1 deletion client/relay-chain-inprocess-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
async-trait = "0.1.63"
async-trait = "0.1.66"
futures = "0.3.26"
futures-timer = "3.0.2"

Expand Down
2 changes: 1 addition & 1 deletion client/relay-chain-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }

futures = "0.3.26"
async-trait = "0.1.63"
async-trait = "0.1.66"
thiserror = "1.0.38"
jsonrpsee-core = "0.16.2"
parity-scale-codec = "3.4.0"
4 changes: 2 additions & 2 deletions client/relay-chain-minimal-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ cumulus-primitives-core = { path = "../../primitives/core" }
array-bytes = "6.0"
lru = "0.9"
tracing = "0.1.37"
async-trait = "0.1.63"
async-trait = "0.1.66"
futures = "0.3.26"
tokio = { version = "1.25.0", features = ["macros"] }
tokio = { version = "1.26.0", features = ["macros"] }
4 changes: 2 additions & 2 deletions client/relay-chain-rpc-interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "mas
sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }

tokio = { version = "1.25.0", features = ["sync"] }
tokio = { version = "1.26.0", features = ["sync"] }

futures = "0.3.26"
futures-timer = "3.0.2"
parity-scale-codec = "3.4.0"
jsonrpsee = { version = "0.16.2", features = ["ws-client"] }
tracing = "0.1.37"
async-trait = "0.1.63"
async-trait = "0.1.66"
url = "2.3.1"
serde_json = "1.0.93"
serde = "1.0.152"
Expand Down
2 changes: 1 addition & 1 deletion parachain-template/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"
build = "build.rs"

[dependencies]
clap = { version = "4.1.6", features = ["derive"] }
clap = { version = "4.1.8", features = ["derive"] }
log = "0.4.17"
codec = { package = "parity-scale-codec", version = "3.0.0" }
serde = { version = "1.0.152", features = ["derive"] }
Expand Down
Loading

0 comments on commit 7ea8bfc

Please sign in to comment.