From d0807e9b3c056da6920fee3726b5a2b92aa6069d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Mar 2022 19:28:05 +0000 Subject: [PATCH] Bump anyhow from 1.0.55 to 1.0.56 Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.55 to 1.0.56. - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.55...1.0.56) --- 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 178090fc..c4c3d75c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -73,9 +73,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.55" +version = "1.0.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "159bb86af3a200e19a068f4224eae4c8bb2d0fa054c7e5d1cacd5cef95e684cd" +checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27" dependencies = [ "backtrace", ] diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index cce96186..f68cf012 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.55", features = ["backtrace"] } +anyhow = { version = "1.0.56", features = ["backtrace"] } clap = { version = "3.1.6", 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 dd12a63a..3b9476ed 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.55" +anyhow = "1.0.56" 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 ae6d1043..1f5dd241 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.55" +anyhow = "1.0.56" 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 087a7511..469cec78 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.55" +anyhow = "1.0.56" # Web server warp = "0.3.2" diff --git a/crates/iana-codegen/Cargo.toml b/crates/iana-codegen/Cargo.toml index d419e7c4..9b538c68 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.55" +anyhow = "1.0.56" 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 4ea8159c..b153e226 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.55" +anyhow = "1.0.56" 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 c5dcc319..4a292940 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -12,7 +12,7 @@ chrono = { version = "0.4.19", features = ["serde"] } serde = { version = "1.0.136", features = ["derive"] } serde_json = "1.0.79" thiserror = "1.0.30" -anyhow = "1.0.55" +anyhow = "1.0.56" tracing = "0.1.31" warp = "0.3.2" diff --git a/crates/templates/Cargo.toml b/crates/templates/Cargo.toml index 0f2f5b6e..5f0ae762 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.55" +anyhow = "1.0.56" thiserror = "1.0.30" tera = "1.15.0" diff --git a/crates/warp-utils/Cargo.toml b/crates/warp-utils/Cargo.toml index fa4ea704..fecca007 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.55" +anyhow = "1.0.56" sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] } chrono = { version = "0.4.19", features = ["serde"] } serde = { version = "1.0.136", features = ["derive"] }