From 77f727cb6ad139ff5b009f3a401a72ea704226dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Jul 2023 19:45:59 +0000 Subject: [PATCH] build(deps): bump async-trait from 0.1.70 to 0.1.71 Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.70 to 0.1.71. - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.70...0.1.71) --- updated-dependencies: - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/axum-utils/Cargo.toml | 2 +- crates/config/Cargo.toml | 2 +- crates/email/Cargo.toml | 2 +- crates/graphql/Cargo.toml | 2 +- crates/iana-codegen/Cargo.toml | 2 +- crates/matrix-synapse/Cargo.toml | 2 +- crates/matrix/Cargo.toml | 2 +- crates/storage-pg/Cargo.toml | 2 +- crates/storage/Cargo.toml | 2 +- crates/tasks/Cargo.toml | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c381a0f6..134f8dab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -532,9 +532,9 @@ checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" [[package]] name = "async-trait" -version = "0.1.70" +version = "0.1.71" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79fa67157abdfd688a259b6648808757db9347af834624f27ec646da976aee5d" +checksum = "a564d521dd56509c4c47480d00b80ee55f7e385ae48db5744c67ad50c92d2ebf" dependencies = [ "proc-macro2 1.0.63", "quote 1.0.29", diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index ec43aad9..f05a1465 100644 --- a/crates/axum-utils/Cargo.toml +++ b/crates/axum-utils/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -async-trait = "0.1.70" +async-trait = "0.1.71" axum = { version = "0.6.18", features = ["headers"] } axum-extra = { version = "0.7.4", features = ["cookie-private"] } chrono = "0.4.26" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 884f18a8..3f2c1f37 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] tokio = { version = "1.29.1", features = ["fs", "rt"] } tracing = "0.1.37" -async-trait = "0.1.70" +async-trait = "0.1.71" thiserror = "1.0.41" anyhow = "1.0.71" diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index e2410aab..3d4122ca 100644 --- a/crates/email/Cargo.toml +++ b/crates/email/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -async-trait = "0.1.70" +async-trait = "0.1.71" tracing = "0.1.37" thiserror = "1.0.41" headers = "0.3.8" diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index 813c5f90..bae4abb7 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] anyhow = "1.0.71" async-graphql = { version = "5.0.10", features = ["chrono", "url"] } -async-trait = "0.1.70" +async-trait = "0.1.71" chrono = "0.4.26" lettre = { version = "0.10.4", default-features = false } serde = { version = "1.0.166", features = ["derive"] } diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index 3ccee391..62bbbf89 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] anyhow = "1.0.71" -async-trait = "0.1.70" +async-trait = "0.1.71" camino = "1.1.4" convert_case = "0.6.0" csv = "1.2.2" diff --git a/crates/matrix-synapse/Cargo.toml b/crates/matrix-synapse/Cargo.toml index 26fd5efc..1e4abaa5 100644 --- a/crates/matrix-synapse/Cargo.toml +++ b/crates/matrix-synapse/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] anyhow = "1.0.71" -async-trait = "0.1.70" +async-trait = "0.1.71" http = "0.2.9" url = "2.4.0" serde = { version = "1.0.166", features = ["derive"] } diff --git a/crates/matrix/Cargo.toml b/crates/matrix/Cargo.toml index 799edc3a..7a8e71f0 100644 --- a/crates/matrix/Cargo.toml +++ b/crates/matrix/Cargo.toml @@ -7,6 +7,6 @@ license = "Apache-2.0" [dependencies] serde = { version = "1.0.166", features = ["derive"] } -async-trait = "0.1.70" +async-trait = "0.1.71" http = "0.2.9" url = "2.4.0" diff --git a/crates/storage-pg/Cargo.toml b/crates/storage-pg/Cargo.toml index d4d4b621..881dd683 100644 --- a/crates/storage-pg/Cargo.toml +++ b/crates/storage-pg/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -async-trait = "0.1.70" +async-trait = "0.1.71" sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json", "uuid"] } chrono = { version = "0.4.26", features = ["serde"] } serde = { version = "1.0.166", features = ["derive"] } diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index f00a7ed3..39fa21f4 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -async-trait = "0.1.70" +async-trait = "0.1.71" chrono = "0.4.26" thiserror = "1.0.41" futures-util = "0.3.28" diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index 87646e7e..017d3c18 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0.71" apalis-core = { version = "0.4.2", features = ["extensions", "tokio-comp"] } apalis-cron = "0.4.2" apalis-sql = { version = "0.4.2", features = ["postgres", "tokio-comp"] } -async-trait = "0.1.70" +async-trait = "0.1.71" chrono = "0.4.26" rand = "0.8.5" rand_chacha = "0.3.1"