Skip to content

Commit 817e35e

Browse files
committed
bump
1 parent fc095b6 commit 817e35e

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resolver = "2"
44

55
[workspace.package]
66
edition = "2021"
7-
version = "0.0.18"
7+
version = "0.0.19"
88
authors = ["Jun Kurihara"]
99
homepage = "https://github.com/junkurihara/httpsig-rs"
1010
repository = "https://github.com/junkurihara/httpsig-rs"

httpsig-hyper/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,32 @@ rust-version.workspace = true
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
httpsig = { path = "../httpsig", version = "0.0.18" }
16+
httpsig = { path = "../httpsig", version = "0.0.19" }
1717

18-
thiserror = { version = "2.0.11" }
18+
thiserror = { version = "2.0.16" }
1919
tracing = { version = "0.1.41" }
2020
futures = { version = "0.3.31", default-features = false, features = [
2121
"std",
2222
"async-await",
2323
] }
24-
indexmap = { version = "2.7.1" }
24+
indexmap = { version = "2.11.1" }
2525

2626
# content digest with rfc8941 structured field values
27-
sha2 = { version = "0.10.8", default-features = false }
27+
sha2 = { version = "0.10.9", default-features = false }
2828
sfv = { version = "0.10.4" }
2929

3030
# encoding
3131
base64 = { version = "0.22.1" }
3232

3333
# for request and response headers
34-
http = { version = "1.2.0" }
34+
http = { version = "1.3.1" }
3535
http-body = { version = "1.0.1" }
36-
http-body-util = { version = "0.1.2" }
37-
bytes = { version = "1.10.0" }
36+
http-body-util = { version = "0.1.3" }
37+
bytes = { version = "1.10.1" }
3838

3939

4040
[dev-dependencies]
41-
tokio = { version = "1.43.0", default-features = false, features = [
41+
tokio = { version = "1.47.1", default-features = false, features = [
4242
"macros",
4343
"rt-multi-thread",
4444
] } # testing only

httpsig/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ rust-version.workspace = true
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
thiserror = { version = "2.0.11" }
16+
thiserror = { version = "2.0.16" }
1717
tracing = { version = "0.1.41" }
1818
rustc-hash = { version = "2.1.1" }
19-
indexmap = { version = "2.7.1" }
19+
indexmap = { version = "2.11.1" }
2020
fxhash = { version = "0.2.1" }
21-
rand = { version = "0.9.0" }
21+
rand = { version = "0.9.2" }
2222

2323
# crypto
2424
pkcs8 = { version = "0.10.2", default-features = false, features = ["pem"] }
@@ -39,8 +39,8 @@ p384 = { version = "0.13.1", default-features = false, features = [
3939
"ecdsa",
4040
] }
4141
hmac = { version = "0.12.1" }
42-
sha2 = { version = "0.10.8", default-features = false }
43-
bytes = { version = "1.10.0" }
42+
sha2 = { version = "0.10.9", default-features = false }
43+
bytes = { version = "1.10.1" }
4444

4545
# encoding
4646
base64 = { version = "0.22.1" }

0 commit comments

Comments
 (0)