Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Oct 1, 2024
1 parent b450fa9 commit 6bc752c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions httpsig-hyper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ rust-version.workspace = true
[dependencies]
httpsig = { path = "../httpsig", version = "0.0.16" }

thiserror = { version = "1.0.63" }
thiserror = { version = "1.0.64" }
tracing = { version = "0.1.40" }
futures = { version = "0.3.30", default-features = false, features = [
"std",
"async-await",
] }
indexmap = { version = "2.4.0" }
indexmap = { version = "2.5.0" }

# content digest with rfc8941 structured field values
sha2 = { version = "0.10.8", default-features = false }
Expand All @@ -34,11 +34,11 @@ base64 = { version = "0.22.1" }
http = { version = "1.1.0" }
http-body = { version = "1.0.1" }
http-body-util = { version = "0.1.2" }
bytes = { version = "1.7.1" }
bytes = { version = "1.7.2" }


[dev-dependencies]
tokio = { version = "1.39.3", default-features = false, features = [
tokio = { version = "1.40.0", default-features = false, features = [
"macros",
"rt-multi-thread",
] } # testing only
6 changes: 3 additions & 3 deletions httpsig/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ 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.63" }
thiserror = { version = "1.0.64" }
tracing = { version = "0.1.40" }
rustc-hash = { version = "2.0.0" }
indexmap = { version = "2.4.0" }
indexmap = { version = "2.5.0" }
fxhash = { version = "0.2.1" }
rand = { version = "0.8.5" }

Expand All @@ -40,7 +40,7 @@ p384 = { version = "0.13.0", default-features = false, features = [
] }
hmac = { version = "0.12.1" }
sha2 = { version = "0.10.8", default-features = false }
bytes = { version = "1.7.1" }
bytes = { version = "1.7.2" }

# encoding
base64 = { version = "0.22.1" }
Expand Down

0 comments on commit 6bc752c

Please sign in to comment.