diff --git a/Cargo.lock b/Cargo.lock index 04cb532..23c1a00 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -53,9 +53,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.76" +version = "1.0.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59d2a3357dde987206219e78ecfbbb6e8dad06cbb65292758d3270e6254f7355" +checksum = "c9d19de80eff169429ac1e9f48fffb163916b448a44e8e046186232046d9e1f9" dependencies = [ "backtrace", ] diff --git a/crates/koe-audio/Cargo.toml b/crates/koe-audio/Cargo.toml index 1575be0..229056f 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.76", features = ["backtrace"] } +anyhow = { version = "1.0.77", features = ["backtrace"] } tokio = { version = "1.35.1", features = ["rt", "process", "io-util"] } log = "0.4.20" diff --git a/crates/koe-call/Cargo.toml b/crates/koe-call/Cargo.toml index b4afb32..21478f8 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.76", features = ["backtrace"] } +anyhow = { version = "1.0.77", features = ["backtrace"] } tokio = { version = "1.35.1", 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 7c5c08f..cb81415 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.76", features = ["backtrace"] } +anyhow = { version = "1.0.77", features = ["backtrace"] } tokio = { version = "1.35.1", 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 748ed5b..c3fdc37 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.76", features = ["backtrace"] } +anyhow = { version = "1.0.77", 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 2955e06..ce67421 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.76", features = ["backtrace"] } +anyhow = { version = "1.0.77", 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 88d15b9..d9395a6 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.76", features = ["backtrace"] } +anyhow = { version = "1.0.77", features = ["backtrace"] } tokio = { version = "1.35.1", features = ["rt-multi-thread", "macros", "sync", "time"] } # Logging