Skip to content

Commit

Permalink
chore: deps
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Jun 5, 2024
1 parent 32ac2f5 commit 3b77805
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions httpsig-hyper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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" }
Expand All @@ -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
4 changes: 2 additions & 2 deletions httpsig-hyper/src/hyper_http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down Expand Up @@ -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
}

Expand Down
4 changes: 2 additions & 2 deletions httpsig/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down Expand Up @@ -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" }

0 comments on commit 3b77805

Please sign in to comment.