From a85f00249b22be2f98edc38e187e4c1c96912b08 Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Mon, 25 Nov 2024 01:35:14 +0000 Subject: [PATCH] fix(deps): update rust crate notmad to 0.7.0 --- Cargo.lock | 30 +++++++++++++++++++++++++----- crates/iamalive/Cargo.toml | 2 +- 2 files changed, 26 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 18e9714..15bfba8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -555,7 +555,7 @@ checksum = "154be26c4796e549cab55b834bb8bf6cbcd24e759ecaa6f91155464520c616ba" dependencies = [ "anyhow", "async-trait", - "thiserror", + "thiserror 1.0.69", "tokio", "tokio-util", "tracing", @@ -563,16 +563,16 @@ dependencies = [ [[package]] name = "notmad" -version = "0.6.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "590b2938244df27d8e6b9989dd320db6499bdad8c0a2381b4d748134998f5515" +checksum = "84a91fcd59e5177fb66e5ee7009fd4d4822a73364b848ca7083345ccf1c2dab1" dependencies = [ "anyhow", "async-trait", "futures", "futures-util", "rand", - "thiserror", + "thiserror 2.0.3", "tokio", "tokio-util", "tracing", @@ -872,7 +872,16 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl", + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" +dependencies = [ + "thiserror-impl 2.0.3", ] [[package]] @@ -886,6 +895,17 @@ dependencies = [ "syn", ] +[[package]] +name = "thiserror-impl" +version = "2.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "thread_local" version = "1.1.8" diff --git a/crates/iamalive/Cargo.toml b/crates/iamalive/Cargo.toml index 9d0af35..44c03f2 100644 --- a/crates/iamalive/Cargo.toml +++ b/crates/iamalive/Cargo.toml @@ -15,6 +15,6 @@ axum.workspace = true serde = { version = "1.0.197", features = ["derive"] } uuid = { version = "1.7.0", features = ["v4"] } tower-http = { version = "0.6.0", features = ["cors", "trace"] } -notmad = "0.6.0" +notmad = "0.7.0" nodrift = "0.2.0" rand = "0.8.5"