From 1a2dbb060867821e4a7cdce8275a8d5b40a2e5f8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 16:20:25 +0000 Subject: [PATCH] chore(deps): update rust crate anyhow to 1.0.76 --- Cargo.lock | 4 ++-- crates/koe-audio/Cargo.toml | 2 +- crates/koe-call/Cargo.toml | 2 +- crates/koe-config/Cargo.toml | 2 +- crates/koe-db/Cargo.toml | 2 +- crates/koe-speech/Cargo.toml | 2 +- crates/koe/Cargo.toml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3f53619..71644b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -53,9 +53,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.75" +version = "1.0.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" +checksum = "59d2a3357dde987206219e78ecfbbb6e8dad06cbb65292758d3270e6254f7355" dependencies = [ "backtrace", ] diff --git a/crates/koe-audio/Cargo.toml b/crates/koe-audio/Cargo.toml index 7aba7e3..5b22e1b 100644 --- a/crates/koe-audio/Cargo.toml +++ b/crates/koe-audio/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" publish = false [dependencies] -anyhow = { version = "1.0.75", features = ["backtrace"] } +anyhow = { version = "1.0.76", features = ["backtrace"] } tokio = { version = "1.35.0", features = ["rt", "process", "io-util"] } log = "0.4.20" diff --git a/crates/koe-call/Cargo.toml b/crates/koe-call/Cargo.toml index 54b6c0e..810c3df 100644 --- a/crates/koe-call/Cargo.toml +++ b/crates/koe-call/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = { version = "1.0.75", features = ["backtrace"] } +anyhow = { version = "1.0.76", features = ["backtrace"] } tokio = { version = "1.35.0", features = ["sync"] } serenity = { version = "0.11.7", default-features = false, features = ["native_tls_backend"] } songbird = { version = "0.3.2", default-features = false, features = ["serenity-native", "driver", "builtin-queue"] } diff --git a/crates/koe-config/Cargo.toml b/crates/koe-config/Cargo.toml index a95be28..572d45a 100644 --- a/crates/koe-config/Cargo.toml +++ b/crates/koe-config/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" publish = false [dependencies] -anyhow = { version = "1.0.75", features = ["backtrace"] } +anyhow = { version = "1.0.76", features = ["backtrace"] } tokio = { version = "1.35.0", features = ["fs"] } serde = { version = "1.0.193", features = ["derive"] } serde_yaml = "0.9.27" diff --git a/crates/koe-db/Cargo.toml b/crates/koe-db/Cargo.toml index 7f43c87..748ed5b 100644 --- a/crates/koe-db/Cargo.toml +++ b/crates/koe-db/Cargo.toml @@ -4,5 +4,5 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = { version = "1.0.75", features = ["backtrace"] } +anyhow = { version = "1.0.76", features = ["backtrace"] } redis = { version = "0.23.3", default-features = false, features = ["aio", "tokio-comp"] } diff --git a/crates/koe-speech/Cargo.toml b/crates/koe-speech/Cargo.toml index 5f3f828..2955e06 100644 --- a/crates/koe-speech/Cargo.toml +++ b/crates/koe-speech/Cargo.toml @@ -6,6 +6,6 @@ publish = false [dependencies] koe-audio = { path = "../koe-audio" } -anyhow = { version = "1.0.75", features = ["backtrace"] } +anyhow = { version = "1.0.76", features = ["backtrace"] } serde = { version = "1.0.193", features = ["derive"] } reqwest = { version = "0.11.22", features = ["json"] } diff --git a/crates/koe/Cargo.toml b/crates/koe/Cargo.toml index 1de4f55..b9c23e6 100644 --- a/crates/koe/Cargo.toml +++ b/crates/koe/Cargo.toml @@ -12,7 +12,7 @@ koe-db = { path = "../koe-db" } koe-speech = { path = "../koe-speech" } # Basics -anyhow = { version = "1.0.75", features = ["backtrace"] } +anyhow = { version = "1.0.76", features = ["backtrace"] } tokio = { version = "1.35.0", features = ["rt-multi-thread", "macros", "sync", "time"] } # Logging