mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 02:08:02 +00:00
Bump async-trait from 0.1.73 to 0.1.74 (#2730)
Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.73 to 0.1.74. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.74</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/265979b07a9af573e1edd3b2a9b179533cfa7a6c"><code>265979b</code></a> Release 0.1.74</li> <li><a href="https://github.com/dtolnay/async-trait/commit/5e677097d2e67f7a5c5e3023e2f3b99b36a9e132"><code>5e67709</code></a> Fix doc test when async fn in trait is natively supported</li> <li><a href="https://github.com/dtolnay/async-trait/commit/ef144aed28b636eb65759505b2323afc4c753fbe"><code>ef144ae</code></a> Update ui test suite to nightly-2023-10-15</li> <li><a href="https://github.com/dtolnay/async-trait/commit/9398a28d6fc977ccf8c286bd85b4b87a883f92ac"><code>9398a28</code></a> Test docs.rs documentation build in CI</li> <li><a href="https://github.com/dtolnay/async-trait/commit/8737173dafa371e5e9e491d736513be1baf697f4"><code>8737173</code></a> Update ui test suite to nightly-2023-09-24</li> <li><a href="https://github.com/dtolnay/async-trait/commit/5ba643c001a55f70c4a44690e040cdfab873ba56"><code>5ba643c</code></a> Test dyn Trait containing async fn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/247c8e7b0b3ff69c9518ebf93e69fe74d47f17b6"><code>247c8e7</code></a> Add ui test testing the recommendation to use async-trait</li> <li><a href="https://github.com/dtolnay/async-trait/commit/799db66a84834c403860df4a8c0227d8fb7f9d9d"><code>799db66</code></a> Update ui test suite to nightly-2023-09-23</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0e60248011f751d8ccf58219d0a79aacfe9619f1"><code>0e60248</code></a> Update actions/checkout@v3 -> v4</li> <li><a href="https://github.com/dtolnay/async-trait/commit/7fcbc83993d5ef483d048c271a7f6c4ac8c98388"><code>7fcbc83</code></a> Update ui test suite to nightly-2023-08-29</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.73...0.1.74">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
Generated
+2
-2
@@ -1169,9 +1169,9 @@ checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
|
||||
|
||||
[[package]]
|
||||
name = "async-trait"
|
||||
version = "0.1.73"
|
||||
version = "0.1.74"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
|
||||
checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
||||
@@ -34,7 +34,7 @@ cumulus-client-network = { path = "../network" }
|
||||
cumulus-primitives-core = { path = "../../primitives/core" }
|
||||
|
||||
[dev-dependencies]
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
|
||||
# Substrate
|
||||
sp-maybe-compressed-blob = { path = "../../../substrate/primitives/maybe-compressed-blob" }
|
||||
|
||||
@@ -10,7 +10,7 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
|
||||
futures = "0.3.28"
|
||||
tracing = "0.1.37"
|
||||
|
||||
@@ -10,7 +10,7 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
|
||||
dyn-clone = "1.0.12"
|
||||
futures = "0.3.28"
|
||||
|
||||
@@ -11,7 +11,7 @@ workspace = true
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
thiserror = "1.0.48"
|
||||
|
||||
# Substrate
|
||||
|
||||
@@ -10,7 +10,7 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
futures = "0.3.28"
|
||||
parking_lot = "0.12.1"
|
||||
tracing = "0.1.37"
|
||||
|
||||
@@ -10,7 +10,7 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
|
||||
futures = "0.3.28"
|
||||
futures-timer = "3.0.2"
|
||||
|
||||
@@ -32,7 +32,7 @@ polkadot-primitives = { path = "../../../polkadot/primitives" }
|
||||
# Cumulus
|
||||
cumulus-primitives-core = { path = "../../primitives/core" }
|
||||
cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1.32.0", features = ["macros"] }
|
||||
|
||||
@@ -10,7 +10,7 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
futures = "0.3.28"
|
||||
futures-timer = "3.0.2"
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ sp-state-machine = { path = "../../../substrate/primitives/state-machine" }
|
||||
sc-client-api = { path = "../../../substrate/client/api" }
|
||||
|
||||
futures = "0.3.28"
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
thiserror = "1.0.48"
|
||||
jsonrpsee-core = "0.16.2"
|
||||
parity-scale-codec = "3.6.4"
|
||||
|
||||
@@ -48,6 +48,6 @@ cumulus-primitives-core = { path = "../../primitives/core" }
|
||||
|
||||
array-bytes = "6.1"
|
||||
tracing = "0.1.37"
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
futures = "0.3.28"
|
||||
parking_lot = "0.12.1"
|
||||
|
||||
@@ -35,7 +35,7 @@ futures-timer = "3.0.2"
|
||||
parity-scale-codec = "3.6.4"
|
||||
jsonrpsee = { version = "0.16.2", features = ["ws-client"] }
|
||||
tracing = "0.1.37"
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
url = "2.4.0"
|
||||
serde_json = "1.0.108"
|
||||
serde = "1.0.193"
|
||||
|
||||
@@ -15,7 +15,7 @@ name = "polkadot-parachain"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
clap = { version = "4.4.11", features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
futures = "0.3.28"
|
||||
|
||||
@@ -10,7 +10,7 @@ license = "Apache-2.0"
|
||||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-trait = { version = "0.1.73", optional = true }
|
||||
async-trait = { version = "0.1.74", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
tracing = { version = "0.1.37", optional = true }
|
||||
|
||||
@@ -13,7 +13,7 @@ name = "test-parachain"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
clap = { version = "4.4.11", features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
criterion = { version = "0.5.1", features = ["async_tokio"] }
|
||||
|
||||
@@ -40,7 +40,7 @@ rand_chacha = { version = "0.3.1" }
|
||||
rand = "0.8.5"
|
||||
|
||||
[dev-dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
parking_lot = "0.12.0"
|
||||
# rand_core should match schnorrkel
|
||||
rand_core = "0.5.1"
|
||||
|
||||
@@ -10,7 +10,7 @@ license.workspace = true
|
||||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.2"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
|
||||
@@ -14,7 +14,7 @@ futures = "0.3.21"
|
||||
futures-timer = "3.0.2"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
thiserror = "1.0.48"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-overseer = { path = "../../overseer" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
|
||||
@@ -25,7 +25,7 @@ polkadot-node-subsystem-types = { path = "../../subsystem-types" }
|
||||
sp-api = { path = "../../../../substrate/primitives/api" }
|
||||
sp-core = { path = "../../../../substrate/primitives/core" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
futures = { version = "0.3.21", features = ["thread-pool"] }
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
|
||||
@@ -40,7 +40,7 @@ polkadot-node-primitives = { path = "../primitives" }
|
||||
polkadot-primitives = { path = "../../primitives" }
|
||||
color-eyre = { version = "0.6.1", default-features = false }
|
||||
assert_matches = "1.5"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
sp-keystore = { path = "../../../substrate/primitives/keystore" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
clap = { version = "4.4.11", features = ["derive"] }
|
||||
|
||||
@@ -16,7 +16,7 @@ schnellru = "0.2.1"
|
||||
rand = "0.8.5"
|
||||
fatality = "0.0.6"
|
||||
thiserror = "1.0.48"
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
|
||||
polkadot-erasure-coding = { path = "../../../erasure-coding" }
|
||||
|
||||
@@ -11,7 +11,7 @@ workspace = true
|
||||
|
||||
[dependencies]
|
||||
always-assert = "0.1"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
futures = "0.3.21"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
|
||||
@@ -31,7 +31,7 @@ indexmap = "1.9.1"
|
||||
|
||||
[dev-dependencies]
|
||||
async-channel = "1.8.0"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
||||
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
||||
|
||||
@@ -36,6 +36,6 @@ sp-authority-discovery = { path = "../../../../substrate/primitives/authority-di
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
|
||||
assert_matches = "1.4.0"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
lazy_static = "1.4.0"
|
||||
quickcheck = "1.0.3"
|
||||
|
||||
@@ -11,7 +11,7 @@ workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-channel = "1.8.0"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
hex = "0.4.3"
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
|
||||
@@ -23,7 +23,7 @@ polkadot-primitives = { path = "../../primitives" }
|
||||
orchestra = { version = "0.3.3", default-features = false, features = ["futures_channel"] }
|
||||
gum = { package = "tracing-gum", path = "../gum" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
tikv-jemalloc-ctl = { version = "0.5.0", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
@@ -78,7 +78,7 @@ frame-benchmarking-cli = { path = "../../../substrate/utils/frame/benchmarking-c
|
||||
frame-benchmarking = { path = "../../../substrate/frame/benchmarking" }
|
||||
|
||||
# External Crates
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
futures = "0.3.21"
|
||||
hex-literal = "0.4.1"
|
||||
is_executable = "1.0.1"
|
||||
|
||||
@@ -27,7 +27,7 @@ color-eyre = { version = "0.6.1", default-features = false }
|
||||
polkadot-overseer = { path = "../overseer" }
|
||||
colored = "2.0.4"
|
||||
assert_matches = "1.5"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
sp-keystore = { path = "../../../substrate/primitives/keystore" }
|
||||
sc-keystore = { path = "../../../substrate/client/keystore" }
|
||||
sp-core = { path = "../../../substrate/primitives/core" }
|
||||
|
||||
@@ -11,7 +11,7 @@ license.workspace = true
|
||||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
futures = "0.3.21"
|
||||
parking_lot = "0.12.0"
|
||||
polkadot-node-subsystem = { path = "../subsystem" }
|
||||
|
||||
@@ -29,5 +29,5 @@ sc-transaction-pool-api = { path = "../../../substrate/client/transaction-pool/a
|
||||
smallvec = "1.8.0"
|
||||
substrate-prometheus-endpoint = { path = "../../../substrate/utils/prometheus" }
|
||||
thiserror = "1.0.48"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
|
||||
|
||||
@@ -10,7 +10,7 @@ license.workspace = true
|
||||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
futures = "0.3.21"
|
||||
futures-channel = "0.3.23"
|
||||
itertools = "0.10"
|
||||
|
||||
@@ -42,7 +42,7 @@ sp-blockchain = { path = "../../primitives/blockchain" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-keystore = { path = "../../primitives/keystore" }
|
||||
sp-runtime = { path = "../../primitives/runtime" }
|
||||
async-trait = "0.1.56"
|
||||
async-trait = "0.1.74"
|
||||
multihash-codetable = { version = "0.1.1", features = [
|
||||
"digest",
|
||||
"serde",
|
||||
|
||||
@@ -16,7 +16,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
futures = "0.3.21"
|
||||
log = "0.4.17"
|
||||
|
||||
@@ -17,7 +17,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive"] }
|
||||
futures = "0.3.21"
|
||||
log = "0.4.17"
|
||||
|
||||
@@ -14,7 +14,7 @@ workspace = true
|
||||
[dependencies]
|
||||
array-bytes = "6.1"
|
||||
async-channel = "1.8.0"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive"] }
|
||||
fnv = "1.0.6"
|
||||
futures = "0.3"
|
||||
|
||||
@@ -16,7 +16,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
futures = { version = "0.3.21", features = ["thread-pool"] }
|
||||
futures-timer = "3.0.1"
|
||||
libp2p-identity = { version = "0.1.3", features = ["ed25519", "peerid"] }
|
||||
|
||||
@@ -19,7 +19,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
ahash = "0.8.2"
|
||||
array-bytes = "6.1"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
dyn-clone = "1.0"
|
||||
finality-grandpa = { version = "0.16.2", features = ["derive-codec"] }
|
||||
futures = "0.3.21"
|
||||
|
||||
@@ -18,7 +18,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
jsonrpsee = { version = "0.16.2", features = ["client-core", "macros", "server"] }
|
||||
assert_matches = "1.3.0"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.1"
|
||||
|
||||
@@ -16,7 +16,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive"] }
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.1"
|
||||
|
||||
@@ -17,7 +17,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.1"
|
||||
|
||||
@@ -32,7 +32,7 @@ sp-runtime = { path = "../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = "1.22.0"
|
||||
async-trait = "0.1.73"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
|
||||
quickcheck = { version = "1.0.3", default-features = false }
|
||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||
|
||||
@@ -19,7 +19,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
prost-build = "0.11"
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
bitflags = "1.3.2"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", features = [
|
||||
"derive",
|
||||
|
||||
@@ -21,7 +21,7 @@ prost-build = "0.11"
|
||||
[dependencies]
|
||||
array-bytes = "6.1"
|
||||
async-channel = "1.8.0"
|
||||
async-trait = "0.1.58"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", features = ["derive"] }
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.2"
|
||||
|
||||
@@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
tokio = "1.22.0"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.1"
|
||||
libp2p = "0.51.3"
|
||||
|
||||
@@ -79,7 +79,7 @@ sc-tracing = { path = "../tracing" }
|
||||
sc-sysinfo = { path = "../sysinfo" }
|
||||
tracing = "0.1.29"
|
||||
tracing-futures = { version = "0.2.4" }
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
tokio = { version = "1.22.0", features = ["parking_lot", "rt-multi-thread", "time"] }
|
||||
tempfile = "3.1.0"
|
||||
directories = "5.0.1"
|
||||
|
||||
@@ -16,7 +16,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.2"
|
||||
|
||||
@@ -12,7 +12,7 @@ description = "Transaction pool client facing API."
|
||||
workspace = true
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
futures = "0.3.21"
|
||||
log = "0.4.17"
|
||||
|
||||
@@ -16,7 +16,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = { version = "0.1.57", optional = true }
|
||||
async-trait = { version = "0.1.74", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
sp-api = { path = "../../api", default-features = false }
|
||||
|
||||
@@ -16,7 +16,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = { version = "0.1.57", optional = true }
|
||||
async-trait = { version = "0.1.74", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.193", default-features = false, features = ["alloc", "derive"], optional = true }
|
||||
|
||||
@@ -17,7 +17,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
futures = { version = "0.3.21", features = ["thread-pool"] }
|
||||
log = "0.4.17"
|
||||
thiserror = "1.0.48"
|
||||
|
||||
@@ -17,7 +17,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = { version = "0.1.57", optional = true }
|
||||
async-trait = { version = "0.1.74", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
impl-trait-for-tuples = "0.2.2"
|
||||
|
||||
@@ -16,7 +16,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = { version = "0.1.57", optional = true }
|
||||
async-trait = { version = "0.1.74", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
thiserror = { version = "1.0.48", optional = true }
|
||||
sp-inherents = { path = "../inherents", default-features = false }
|
||||
|
||||
@@ -16,7 +16,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = { version = "0.1.57", optional = true }
|
||||
async-trait = { version = "0.1.74", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
sp-core = { path = "../core", optional = true }
|
||||
|
||||
@@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
array-bytes = "6.1"
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
||||
futures = "0.3.21"
|
||||
serde = "1.0.193"
|
||||
|
||||
@@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
jsonrpsee = { version = "0.16.2", features = ["ws-client"] }
|
||||
sc-rpc-api = { path = "../../../../client/rpc-api" }
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
serde = "1"
|
||||
sp-runtime = { path = "../../../../primitives/runtime" }
|
||||
log = "0.4"
|
||||
|
||||
@@ -37,7 +37,7 @@ sp-weights = { path = "../../../../primitives/weights" }
|
||||
frame-try-runtime = { path = "../../../../frame/try-runtime", optional = true }
|
||||
substrate-rpc-client = { path = "../../rpc/client" }
|
||||
|
||||
async-trait = "0.1.57"
|
||||
async-trait = "0.1.74"
|
||||
clap = { version = "4.4.11", features = ["derive"] }
|
||||
hex = { version = "0.4.3", default-features = false }
|
||||
log = "0.4.17"
|
||||
|
||||
Reference in New Issue
Block a user