From 3b77805a43905e02f063a5405c22eac39390d085 Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Wed, 5 Jun 2024 11:50:31 +0900 Subject: [PATCH] chore: deps --- httpsig-hyper/Cargo.toml | 6 +++--- httpsig-hyper/src/hyper_http.rs | 4 ++-- httpsig/Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/httpsig-hyper/Cargo.toml b/httpsig-hyper/Cargo.toml index 285c095..241b112 100644 --- a/httpsig-hyper/Cargo.toml +++ b/httpsig-hyper/Cargo.toml @@ -15,7 +15,7 @@ rust-version.workspace = true [dependencies] httpsig = { path = "../httpsig", version = "0.0.15" } -thiserror = { version = "1.0.59" } +thiserror = { version = "1.0.61" } tracing = { version = "0.1.40" } futures = { version = "0.3.30", default-features = false, features = [ "std", @@ -28,7 +28,7 @@ sha2 = { version = "0.10.8", default-features = false } sfv = { version = "0.9.4" } # encoding -base64 = { version = "0.22.0" } +base64 = { version = "0.22.1" } # for request and response headers http = { version = "1.1.0" } @@ -38,7 +38,7 @@ bytes = { version = "1.6.0" } [dev-dependencies] -tokio = { version = "1.37.0", default-features = false, features = [ +tokio = { version = "1.38.0", default-features = false, features = [ "macros", "rt-multi-thread", ] } # testing only diff --git a/httpsig-hyper/src/hyper_http.rs b/httpsig-hyper/src/hyper_http.rs index 938c092..7317d54 100644 --- a/httpsig-hyper/src/hyper_http.rs +++ b/httpsig-hyper/src/hyper_http.rs @@ -176,7 +176,7 @@ where T: SigningKey + Sync, { self - .set_message_signatures(&[(&signature_params, signing_key, signature_name)]) + .set_message_signatures(&[(signature_params, signing_key, signature_name)]) .await } @@ -293,7 +293,7 @@ where B: Sync, { self - .set_message_signatures(&[(&signature_params, signing_key, signature_name)], req_for_param) + .set_message_signatures(&[(signature_params, signing_key, signature_name)], req_for_param) .await } diff --git a/httpsig/Cargo.toml b/httpsig/Cargo.toml index bd29983..59e7119 100644 --- a/httpsig/Cargo.toml +++ b/httpsig/Cargo.toml @@ -13,7 +13,7 @@ rust-version.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -thiserror = { version = "1.0.59" } +thiserror = { version = "1.0.61" } tracing = { version = "0.1.40" } rustc-hash = { version = "1.1.0" } indexmap = { version = "2.2.6" } @@ -43,7 +43,7 @@ sha2 = { version = "0.10.8", default-features = false } bytes = { version = "1.6.0" } # encoding -base64 = { version = "0.22.0" } +base64 = { version = "0.22.1" } # for rfc8941 structured field values sfv = { version = "0.9.4" }