diff --git a/Cargo.lock b/Cargo.lock index a8b97ff26f5f..32a71992bd30 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -210,9 +210,9 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.48" +version = "0.1.52" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36ea56748e10732c49404c153638a15ec3d6211ec5ff35d9bb20e13b93576adf" +checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3" 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..ada1abe76f51 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.52" futures = "0.3.12" hex = "0.4.3" rand = "0.8.3" diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml index 039377aed71a..f588ef0046f7 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.52" 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..66b7f46c74a5 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.52" 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..73c7eb0638be 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.52" 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..77a259425647 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.52" 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..d944b0b68890 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.52" kube = "0.51.0"