From a4ec90d426fd253d7f77b1719a00618411a48387 Mon Sep 17 00:00:00 2001 From: Michael Klishin Date: Mon, 25 Nov 2024 14:33:08 -0500 Subject: [PATCH] Switch to thiserror 2.x --- Cargo.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 86f227a..fc5abc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,14 +17,13 @@ reqwest = { version = "0.12", features = [ "json", "multipart", ], optional = true } -thiserror = { version = "1", optional = true } +thiserror = { version = "2", optional = true } percent-encoding = { version = "2", optional = true } tabled = { version = "0.16", features = ["derive", "macros"], optional = true } [dev-dependencies] -amqprs = "1" -cargo-nextest = "0.9.81" -# tokio = { version = "1", features = ["rt", "net"] } +amqprs = { version = "2"} +cargo-nextest = "0.9.84" [features] default = ["core", "blocking"]