From 1e5e755693dfe967e41c912cdd9ae04773a3c8a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Feb 2022 08:59:54 +0000 Subject: [PATCH] Bump anyhow from 1.0.53 to 1.0.55 Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.53 to 1.0.55. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.53...1.0.55) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/cli/Cargo.toml | 2 +- crates/config/Cargo.toml | 2 +- crates/email/Cargo.toml | 2 +- crates/handlers/Cargo.toml | 2 +- crates/iana-codegen/Cargo.toml | 2 +- crates/jose/Cargo.toml | 2 +- crates/storage/Cargo.toml | 2 +- crates/templates/Cargo.toml | 2 +- crates/warp-utils/Cargo.toml | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c71caa49..85594e31 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -73,9 +73,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.53" +version = "1.0.55" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94a45b455c14666b85fc40a019e8ab9eb75e3a124e05494f5397122bc9eb06e0" +checksum = "159bb86af3a200e19a068f4224eae4c8bb2d0fa054c7e5d1cacd5cef95e684cd" dependencies = [ "backtrace", ] diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 70f13725..ea784711 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" [dependencies] tokio = { version = "1.17.0", features = ["full"] } futures = "0.3.21" -anyhow = { version = "1.0.53", features = ["backtrace"] } +anyhow = { version = "1.0.55", features = ["backtrace"] } clap = { version = "3.1.1", features = ["derive"] } dotenv = "0.15.0" schemars = { version = "0.8.8", features = ["url", "chrono"] } diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 593ad9e1..cc716d8d 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -11,7 +11,7 @@ tracing = { version = "0.1.31", features = ["log"] } async-trait = "0.1.52" thiserror = "1.0.30" -anyhow = "1.0.53" +anyhow = "1.0.55" schemars = { version = "0.8.8", features = ["url", "chrono"] } figment = { version = "0.10.6", features = ["env", "yaml", "test"] } diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index 3ebb2dd7..270480fd 100644 --- a/crates/email/Cargo.toml +++ b/crates/email/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -anyhow = "1.0.53" +anyhow = "1.0.55" async-trait = "0.1.52" tokio = { version = "1.17.0", features = ["macros"] } tracing = "0.1.31" diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index c22cb4d1..087a7511 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -17,7 +17,7 @@ tracing = "0.1.31" # Error management thiserror = "1.0.30" -anyhow = "1.0.53" +anyhow = "1.0.55" # Web server warp = "0.3.2" diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index 0e5f4693..d419e7c4 100644 --- a/crates/iana-codegen/Cargo.toml +++ b/crates/iana-codegen/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -anyhow = "1.0.53" +anyhow = "1.0.55" async-trait = "0.1.52" convert_case = "0.5.0" csv = "1.1.6" diff --git a/crates/jose/Cargo.toml b/crates/jose/Cargo.toml index 219f71c5..91595252 100644 --- a/crates/jose/Cargo.toml +++ b/crates/jose/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -anyhow = "1.0.53" +anyhow = "1.0.55" async-trait = "0.1.52" base64ct = { version = "1.0.1", features = ["std"] } chrono = { version = "0.4.19", features = ["serde"] } diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 02690745..e8304a05 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -11,7 +11,7 @@ sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres", "mi chrono = { version = "0.4.19", features = ["serde"] } serde = { version = "1.0.136", features = ["derive"] } thiserror = "1.0.30" -anyhow = "1.0.53" +anyhow = "1.0.55" tracing = "0.1.31" warp = "0.3.2" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index d9c28923..0f2f5b6e 100644 --- a/crates/templates/Cargo.toml +++ b/crates/templates/Cargo.toml @@ -12,7 +12,7 @@ dev = [] tracing = "0.1.31" tokio = { version = "1.17.0", features = ["macros"] } -anyhow = "1.0.53" +anyhow = "1.0.55" thiserror = "1.0.30" tera = "1.15.0" diff --git a/crates/warp-utils/Cargo.toml b/crates/warp-utils/Cargo.toml index a71f3019..38f4e28a 100644 --- a/crates/warp-utils/Cargo.toml +++ b/crates/warp-utils/Cargo.toml @@ -12,7 +12,7 @@ cookie = "0.16.0" warp = "0.3.2" hyper = { version = "0.14.17", features = ["full"] } thiserror = "1.0.30" -anyhow = "1.0.53" +anyhow = "1.0.55" sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] } chrono = { version = "0.4.19", features = ["serde"] } serde = { version = "1.0.136", features = ["derive"] }