From 61d1fdfde4ece8717c7d348052957faed99a9685 Mon Sep 17 00:00:00 2001 From: asonix Date: Mon, 9 Dec 2024 19:29:03 -0600 Subject: [PATCH] reqwest: Update middleware, thiserror --- reqwest/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reqwest/Cargo.toml b/reqwest/Cargo.toml index 2c1cd8c..25adcf1 100644 --- a/reqwest/Cargo.toml +++ b/reqwest/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "http-signature-normalization-reqwest" description = "An HTTP Signatures library that leaves the signing to you" -version = "0.12.0" +version = "0.13.0" authors = ["asonix "] license = "AGPL-3.0" readme = "README.md" @@ -29,11 +29,11 @@ base64 = { version = "0.22", optional = true } http-signature-normalization = { version = "0.7.0", path = ".." } httpdate = "1.0.2" reqwest = { version = "0.12", default-features = false, features = ["json"] } -reqwest-middleware = { version = "0.3.0", optional = true } +reqwest-middleware = { version = "0.4.0", optional = true } ring = { version = "0.17.5", optional = true } sha2 = { version = "0.10", optional = true } sha3 = { version = "0.10", optional = true } -thiserror = "1.0" +thiserror = "2.0" tokio = { version = "1", default-features = false, features = [ "rt", ], optional = true }