From dfe1172d117a0cf04a3f096ef0de3ba05ef97fe0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Apr 2023 08:23:23 +0000 Subject: [PATCH] build(deps): bump async-trait from 0.1.66 to 0.1.67 Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67) --- updated-dependencies: - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- crates/axum-utils/Cargo.toml | 2 +- crates/config/Cargo.toml | 2 +- crates/email/Cargo.toml | 2 +- crates/iana-codegen/Cargo.toml | 2 +- crates/storage-pg/Cargo.toml | 2 +- crates/storage/Cargo.toml | 2 +- crates/tasks/Cargo.toml | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 86c5302d..e6bffeac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -453,13 +453,13 @@ checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524" [[package]] name = "async-trait" -version = "0.1.66" +version = "0.1.67" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b84f9ebcc6c1f5b8cb160f6990096a5c127f423fcb6e1ccc46c370cbdfb75dfc" +checksum = "86ea188f25f0255d8f92797797c97ebf5631fa88178beb1a46fdf5622c9a00e4" dependencies = [ "proc-macro2 1.0.52", "quote 1.0.26", - "syn 1.0.109", + "syn 2.0.4", ] [[package]] diff --git a/crates/axum-utils/Cargo.toml b/crates/axum-utils/Cargo.toml index e5bc6bf9..3ebc8f52 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.66" +async-trait = "0.1.67" axum = { version = "0.6.11", features = ["headers"] } axum-extra = { version = "0.7.1", features = ["cookie-private"] } chrono = "0.4.24" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 317bd12c..2929c2f9 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] tokio = { version = "1.26.0", features = ["fs", "rt"] } tracing = { version = "0.1.37" } -async-trait = "0.1.66" +async-trait = "0.1.67" thiserror = "1.0.39" anyhow = "1.0.69" diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index bf936a5c..24ed8727 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.66" +async-trait = "0.1.67" tracing = "0.1.37" thiserror = "1.0.39" diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index c8e72569..f2db8618 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.69" -async-trait = "0.1.66" +async-trait = "0.1.67" camino = "1.1.4" convert_case = "0.6.0" csv = "1.2.1" diff --git a/crates/storage-pg/Cargo.toml b/crates/storage-pg/Cargo.toml index fceab6a1..db15b709 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.66" +async-trait = "0.1.67" sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json", "uuid"] } chrono = { version = "0.4.24", features = ["serde"] } serde = { version = "1.0.158", features = ["derive"] } diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index aeee0cef..21b97965 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.66" +async-trait = "0.1.67" chrono = "0.4.24" thiserror = "1.0.39" futures-util = "0.3.27" diff --git a/crates/tasks/Cargo.toml b/crates/tasks/Cargo.toml index 6a064b20..5039c9ef 100644 --- a/crates/tasks/Cargo.toml +++ b/crates/tasks/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0.70" apalis-core = { version = "=0.4.0-alpha.5", features = ["extensions", "tokio-comp"] } apalis-cron = "=0.4.0-alpha.5" apalis-sql = { version = "=0.4.0-alpha.5", features = ["postgres", "tokio-comp"] } -async-trait = "0.1.66" +async-trait = "0.1.67" chrono = "0.4.24" rand = "0.8.5" rand_chacha = "0.3.1"