diff --git a/Cargo.lock b/Cargo.lock index a8b97ff26f5f..6cf7395616fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -210,9 +210,9 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.48" +version = "0.1.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36ea56748e10732c49404c153638a15ec3d6211ec5ff35d9bb20e13b93576adf" +checksum = "44318e776df68115a881de9a8fd1b9e53368d7a4a5ce4cc48517da3393233a5e" dependencies = [ "proc-macro2 1.0.24", "quote 1.0.9", diff --git a/client/json-rpc/Cargo.toml b/client/json-rpc/Cargo.toml index 5f417fbbaf78..e627fc906b0c 100644 --- a/client/json-rpc/Cargo.toml +++ b/client/json-rpc/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] anyhow = "1.0.38" -async-trait = "0.1.42" +async-trait = "0.1.51" futures = "0.3.12" hex = "0.4.3" rand = "0.8.3" diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml index 039377aed71a..29d367d51ef9 100644 --- a/consensus/Cargo.toml +++ b/consensus/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [dependencies] anyhow = "1.0.38" -async-trait = "0.1.42" +async-trait = "0.1.51" byteorder = { version = "1.4.2", default-features = false } bytes = "1.0.1" fail = "0.4.0" diff --git a/language/move-prover/Cargo.toml b/language/move-prover/Cargo.toml index 87bf3f156739..1befc1cfa449 100644 --- a/language/move-prover/Cargo.toml +++ b/language/move-prover/Cargo.toml @@ -23,7 +23,7 @@ bytecode-source-map = { path = "../compiler/bytecode-source-map" } move-ir-types = { path = "../move-ir/types" } # external dependencies -async-trait = "0.1.42" +async-trait = "0.1.51" anyhow = "1.0.38" clap = "2.33.3" codespan = "0.8.0" diff --git a/language/move-prover/boogie-backend/Cargo.toml b/language/move-prover/boogie-backend/Cargo.toml index 863a7864245a..06f64cc7c974 100644 --- a/language/move-prover/boogie-backend/Cargo.toml +++ b/language/move-prover/boogie-backend/Cargo.toml @@ -8,7 +8,7 @@ publish = false edition = "2018" [dependencies] -async-trait = "0.1.42" +async-trait = "0.1.51" bytecode = { path = "../bytecode" } move-model = { path = "../../move-model" } vm = { path = "../../vm" } diff --git a/storage/backup/backup-cli/Cargo.toml b/storage/backup/backup-cli/Cargo.toml index f2a416d6c055..a5bdd48d5a51 100644 --- a/storage/backup/backup-cli/Cargo.toml +++ b/storage/backup/backup-cli/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" [dependencies] anyhow = "1.0.38" -async-trait = "0.1.42" +async-trait = "0.1.51" byteorder = "1.4.2" bytes = "1.0.1" futures = "0.3.12" diff --git a/testsuite/cluster-test/Cargo.toml b/testsuite/cluster-test/Cargo.toml index 2c5034dd3362..3be16d4c0714 100644 --- a/testsuite/cluster-test/Cargo.toml +++ b/testsuite/cluster-test/Cargo.toml @@ -63,7 +63,7 @@ transaction-builder = { path = "../../language/transaction-builder" } futures = "0.3.12" tokio = { version = "1.3.0", features = ["full"] } -async-trait = "0.1.42" +async-trait = "0.1.51" kube = "0.51.0"