From 7c2b17c752204883ee18b45b62533333388ebce2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Jan 2023 18:27:00 +0000 Subject: [PATCH] Bump async-trait from 0.1.51 to 0.1.62 Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.51 to 0.1.62. - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.51...0.1.62) --- updated-dependencies: - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 ++++++++++++------- client/consensus/aura/Cargo.toml | 2 +- client/consensus/babe/Cargo.toml | 2 +- client/consensus/common/Cargo.toml | 2 +- client/consensus/manual-seal/Cargo.toml | 2 +- client/consensus/pow/Cargo.toml | 2 +- client/consensus/slots/Cargo.toml | 2 +- client/finality-grandpa/Cargo.toml | 2 +- client/keystore/Cargo.toml | 2 +- client/network/test/Cargo.toml | 2 +- client/service/Cargo.toml | 2 +- primitives/authorship/Cargo.toml | 2 +- primitives/consensus/aura/Cargo.toml | 2 +- primitives/consensus/babe/Cargo.toml | 2 +- primitives/consensus/common/Cargo.toml | 2 +- primitives/inherents/Cargo.toml | 2 +- primitives/keystore/Cargo.toml | 2 +- primitives/timestamp/Cargo.toml | 2 +- .../transaction-storage-proof/Cargo.toml | 2 +- test-utils/client/Cargo.toml | 2 +- 20 files changed, 33 insertions(+), 27 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7a5ef8e09ae7b..9d7d16ff5b263 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -343,9 +343,9 @@ checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0" [[package]] name = "async-trait" -version = "0.1.51" +version = "0.1.62" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e" +checksum = "689894c2db1ea643a50834b999abf1c110887402542955ff5451dab8f861f9ed" dependencies = [ "proc-macro2", "quote", @@ -7435,11 +7435,11 @@ checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" [[package]] name = "proc-macro2" -version = "1.0.37" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec757218438d5fda206afc041538b2f6d889286160d649a86a24d37e1235afd1" +checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2" dependencies = [ - "unicode-xid", + "unicode-ident", ] [[package]] @@ -11144,13 +11144,13 @@ checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2" [[package]] name = "syn" -version = "1.0.82" +version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8daf5dd0bb60cbd4137b1b587d2fc0ae729bc07cf01cd70b36a1ed5ade3b9d59" +checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" dependencies = [ "proc-macro2", "quote", - "unicode-xid", + "unicode-ident", ] [[package]] @@ -11896,6 +11896,12 @@ dependencies = [ "matches", ] +[[package]] +name = "unicode-ident" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" + [[package]] name = "unicode-normalization" version = "0.1.17" diff --git a/client/consensus/aura/Cargo.toml b/client/consensus/aura/Cargo.toml index beaa29d364672..d6ad6bda80de3 100644 --- a/client/consensus/aura/Cargo.toml +++ b/client/consensus/aura/Cargo.toml @@ -34,7 +34,7 @@ sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" } sp-keystore = { version = "0.12.0", path = "../../../primitives/keystore" } sc-telemetry = { version = "4.0.0-dev", path = "../../telemetry" } prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.10.0-dev" } -async-trait = "0.1.50" +async-trait = "0.1.62" [dev-dependencies] sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" } diff --git a/client/consensus/babe/Cargo.toml b/client/consensus/babe/Cargo.toml index 48313cd0437e0..54f88b171e78a 100644 --- a/client/consensus/babe/Cargo.toml +++ b/client/consensus/babe/Cargo.toml @@ -51,7 +51,7 @@ rand = "0.7.2" merlin = "2.0" thiserror = "1.0" retain_mut = "0.1.4" -async-trait = "0.1.50" +async-trait = "0.1.62" [dev-dependencies] sp-timestamp = { version = "4.0.0-dev", path = "../../../primitives/timestamp" } diff --git a/client/consensus/common/Cargo.toml b/client/consensus/common/Cargo.toml index 2846a3e7898c5..f0612a3455a5c 100644 --- a/client/consensus/common/Cargo.toml +++ b/client/consensus/common/Cargo.toml @@ -29,7 +29,7 @@ sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" } parking_lot = "0.12.0" serde = { version = "1.0", features = ["derive"] } prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.10.0-dev" } -async-trait = "0.1.42" +async-trait = "0.1.62" [dev-dependencies] sp-test-primitives = { version = "2.0.0", path = "../../../primitives/test-primitives" } diff --git a/client/consensus/manual-seal/Cargo.toml b/client/consensus/manual-seal/Cargo.toml index c1568ea488337..1af2358a5622c 100644 --- a/client/consensus/manual-seal/Cargo.toml +++ b/client/consensus/manual-seal/Cargo.toml @@ -22,7 +22,7 @@ log = "0.4.16" codec = { package = "parity-scale-codec", version = "3.0.0" } serde = { version = "1.0", features = ["derive"] } assert_matches = "1.3.0" -async-trait = "0.1.50" +async-trait = "0.1.62" sc-client-api = { path = "../../api", version = "4.0.0-dev" } sc-consensus = { version = "0.10.0-dev", path = "../../consensus/common" } diff --git a/client/consensus/pow/Cargo.toml b/client/consensus/pow/Cargo.toml index fc0151d293bbd..5bd8c4f9dc0b3 100644 --- a/client/consensus/pow/Cargo.toml +++ b/client/consensus/pow/Cargo.toml @@ -30,4 +30,4 @@ futures-timer = "3.0.1" parking_lot = "0.12.0" thiserror = "1.0" prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.10.0-dev"} -async-trait = "0.1.50" +async-trait = "0.1.62" diff --git a/client/consensus/slots/Cargo.toml b/client/consensus/slots/Cargo.toml index 8689818de8c17..a760437491f55 100644 --- a/client/consensus/slots/Cargo.toml +++ b/client/consensus/slots/Cargo.toml @@ -31,7 +31,7 @@ futures = "0.3.21" futures-timer = "3.0.1" log = "0.4.16" thiserror = "1.0.30" -async-trait = "0.1.50" +async-trait = "0.1.62" [dev-dependencies] substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } diff --git a/client/finality-grandpa/Cargo.toml b/client/finality-grandpa/Cargo.toml index 2d011fb96be59..c4f6e7a1cefbf 100644 --- a/client/finality-grandpa/Cargo.toml +++ b/client/finality-grandpa/Cargo.toml @@ -46,7 +46,7 @@ sp-finality-grandpa = { version = "4.0.0-dev", path = "../../primitives/finality prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.10.0-dev" } sc-block-builder = { version = "0.10.0-dev", path = "../block-builder" } finality-grandpa = { version = "0.15.0", features = ["derive-codec"] } -async-trait = "0.1.50" +async-trait = "0.1.62" [dev-dependencies] assert_matches = "1.3.0" diff --git a/client/keystore/Cargo.toml b/client/keystore/Cargo.toml index 844110f668869..9c431bc4a365a 100644 --- a/client/keystore/Cargo.toml +++ b/client/keystore/Cargo.toml @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] -async-trait = "0.1.50" +async-trait = "0.1.62" thiserror = "1.0" sp-application-crypto = { version = "6.0.0", path = "../../primitives/application-crypto" } sp-core = { version = "6.0.0", path = "../../primitives/core" } diff --git a/client/network/test/Cargo.toml b/client/network/test/Cargo.toml index 39297dd3ea295..27ab18bc975e3 100644 --- a/client/network/test/Cargo.toml +++ b/client/network/test/Cargo.toml @@ -33,4 +33,4 @@ substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" } sp-tracing = { version = "5.0.0", path = "../../../primitives/tracing" } sc-service = { version = "0.10.0-dev", default-features = false, features = ["test-helpers"], path = "../../service" } -async-trait = "0.1.50" +async-trait = "0.1.62" diff --git a/client/service/Cargo.toml b/client/service/Cargo.toml index 575305a597798..7c9471e7b00e5 100644 --- a/client/service/Cargo.toml +++ b/client/service/Cargo.toml @@ -78,7 +78,7 @@ tracing-futures = { version = "0.2.4" } parity-util-mem = { version = "0.11.0", default-features = false, features = [ "primitive-types", ] } -async-trait = "0.1.50" +async-trait = "0.1.62" tokio = { version = "1.17.0", features = ["time", "rt-multi-thread", "parking_lot"] } tempfile = "3.1.0" directories = "4.0.1" diff --git a/primitives/authorship/Cargo.toml b/primitives/authorship/Cargo.toml index 75e94b895f120..3a3acf1ac09c9 100644 --- a/primitives/authorship/Cargo.toml +++ b/primitives/authorship/Cargo.toml @@ -17,7 +17,7 @@ sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inh sp-runtime = { version = "6.0.0", default-features = false, path = "../runtime" } sp-std = { version = "4.0.0", default-features = false, path = "../std" } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } -async-trait = { version = "0.1.50", optional = true } +async-trait = { version = "0.1.62", optional = true } [features] default = [ "std" ] diff --git a/primitives/consensus/aura/Cargo.toml b/primitives/consensus/aura/Cargo.toml index 2c4a2f0a0de99..8fde4df372ef3 100644 --- a/primitives/consensus/aura/Cargo.toml +++ b/primitives/consensus/aura/Cargo.toml @@ -23,7 +23,7 @@ sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../ sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../timestamp" } sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" } sp-consensus = { version = "0.10.0-dev", path = "../common", optional = true } -async-trait = { version = "0.1.50", optional = true } +async-trait = { version = "0.1.62", optional = true } [features] default = ["std"] diff --git a/primitives/consensus/babe/Cargo.toml b/primitives/consensus/babe/Cargo.toml index 189dc5b2e80f7..e497ba0b9cd85 100644 --- a/primitives/consensus/babe/Cargo.toml +++ b/primitives/consensus/babe/Cargo.toml @@ -28,7 +28,7 @@ sp-keystore = { version = "0.12.0", default-features = false, path = "../../keys sp-runtime = { version = "6.0.0", default-features = false, path = "../../runtime" } sp-timestamp = { version = "4.0.0-dev", path = "../../timestamp", optional = true } serde = { version = "1.0.136", features = ["derive"], optional = true } -async-trait = { version = "0.1.50", optional = true } +async-trait = { version = "0.1.62", optional = true } [features] default = ["std"] diff --git a/primitives/consensus/common/Cargo.toml b/primitives/consensus/common/Cargo.toml index afbe437a16fa4..42eeabfcd804b 100644 --- a/primitives/consensus/common/Cargo.toml +++ b/primitives/consensus/common/Cargo.toml @@ -14,7 +14,7 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -async-trait = "0.1.42" +async-trait = "0.1.62" codec = { package = "parity-scale-codec", version = "3.0.0", features = [ "derive", ] } diff --git a/primitives/inherents/Cargo.toml b/primitives/inherents/Cargo.toml index 0e701a397d7d9..9ccc33398f8e6 100644 --- a/primitives/inherents/Cargo.toml +++ b/primitives/inherents/Cargo.toml @@ -21,7 +21,7 @@ sp-runtime = { version = "6.0.0", path = "../runtime", optional = true } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } thiserror = { version = "1.0.30", optional = true } impl-trait-for-tuples = "0.2.2" -async-trait = { version = "0.1.50", optional = true } +async-trait = { version = "0.1.62", optional = true } [dev-dependencies] futures = "0.3.21" diff --git a/primitives/keystore/Cargo.toml b/primitives/keystore/Cargo.toml index f201cb8518bc6..47e61beb06f55 100644 --- a/primitives/keystore/Cargo.toml +++ b/primitives/keystore/Cargo.toml @@ -13,7 +13,7 @@ documentation = "https://docs.rs/sp-core" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -async-trait = "0.1.50" +async-trait = "0.1.62" futures = "0.3.21" parking_lot = { version = "0.12.0", default-features = false } serde = { version = "1.0", optional = true } diff --git a/primitives/timestamp/Cargo.toml b/primitives/timestamp/Cargo.toml index db753b0b708d9..da40cb7e408b9 100644 --- a/primitives/timestamp/Cargo.toml +++ b/primitives/timestamp/Cargo.toml @@ -21,7 +21,7 @@ sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inh thiserror = { version = "1.0.30", optional = true } log = { version = "0.4.16", optional = true } futures-timer = { version = "3.0.2", optional = true } -async-trait = { version = "0.1.50", optional = true } +async-trait = { version = "0.1.62", optional = true } [features] default = [ "std" ] diff --git a/primitives/transaction-storage-proof/Cargo.toml b/primitives/transaction-storage-proof/Cargo.toml index 7e8949d3da4b4..2f180cb809b06 100644 --- a/primitives/transaction-storage-proof/Cargo.toml +++ b/primitives/transaction-storage-proof/Cargo.toml @@ -21,7 +21,7 @@ sp-core = { version = "6.0.0", path = "../core", optional = true } codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] } scale-info = { version = "2.0.1", default-features = false, features = ["derive"] } log = { version = "0.4.16", optional = true } -async-trait = { version = "0.1.50", optional = true } +async-trait = { version = "0.1.62", optional = true } [features] default = [ "std" ] diff --git a/test-utils/client/Cargo.toml b/test-utils/client/Cargo.toml index f99300f27eacb..3dcc913280249 100644 --- a/test-utils/client/Cargo.toml +++ b/test-utils/client/Cargo.toml @@ -34,4 +34,4 @@ sp-keystore = { version = "0.12.0", path = "../../primitives/keystore" } sp-keyring = { version = "6.0.0", path = "../../primitives/keyring" } sp-runtime = { version = "6.0.0", path = "../../primitives/runtime" } sp-state-machine = { version = "0.12.0", path = "../../primitives/state-machine" } -async-trait = "0.1.50" +async-trait = "0.1.62"