Skip to content

Commit d7cfcb6

Browse files
committed
deps
1 parent 5ee07e0 commit d7cfcb6

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

httpsig-registry/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ publish.workspace = true
1616
anyhow = { version = "1.0.100" }
1717
thiserror = { version = "2.0.17" }
1818
pulldown-cmark = { version = "0.13.0", default-features = false }
19-
http = { version = "1.3.1" }
20-
indexmap = { version = "2.12.0" }
19+
http = { version = "1.4.0" }
20+
indexmap = { version = "2.12.1" }
2121
minisign-verify = { version = "0.2.4" }
2222
reqwest = { version = "0.12.24", default-features = false, features = [
2323
"rustls-tls",

httpsig-wire-proto/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ anyhow = "1.0.100"
1717
thiserror = "2.0.17"
1818
rand = "0.9.2"
1919
hpke = "0.13.0"
20-
bytes = "1.10.1"
20+
bytes = "1.11.0"
2121
byteorder = "1.5.0"
2222
p256 = { version = "0.13.2" }
2323
elliptic-curve = { version = "0.13.8", features = ["ecdh"] }
24-
ed25519-compact = { version = "2.1.1" }
24+
ed25519-compact = { version = "2.2.0" }
2525
digest = "0.10.7"
2626
sha2 = "0.10.9"
2727
hkdf = "0.12.4"
28-
httpsig = "0.0.19"
28+
httpsig = "0.0.20"

modoh-bin/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ async-trait = "0.1.89"
6767
url = "2.5.7"
6868

6969
# config
70-
clap = { version = "4.5.51", features = ["std", "cargo", "wrap_help"] }
70+
clap = { version = "4.5.53", features = ["std", "cargo", "wrap_help"] }
7171
toml = { version = "0.9.8", default-features = false, features = [
7272
"parse",
7373
"serde",
7474
] }
75-
hot_reload = "0.2.0"
75+
hot_reload = "0.3.5"
7676

7777
# tracing and metrics
7878
tracing = { version = "0.1.41" }

modoh-lib/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ async-trait = "0.1.89"
4747
# http handling for both client and server
4848
url = "2.5.7"
4949
ahash = "0.8.12"
50-
hyper = { version = "1.8.0", default-features = false }
51-
http = "1.3.1"
50+
hyper = { version = "1.8.1", default-features = false }
51+
http = "1.4.0"
5252
http-body-util = "0.1.3"
53-
hyper-util = { version = "0.1.17", features = ["full"] }
53+
hyper-util = { version = "0.1.18", features = ["full"] }
5454

5555
# http handling for client
5656
hyper-tls = { version = "0.6.0", features = [
@@ -65,7 +65,7 @@ hyper-rustls = { version = "0.27.7", default-features = false, features = [
6565
], optional = true }
6666

6767
# modoh target handling
68-
odoh-rs = { git = "https://github.com/junkurihara/odoh-rs", rev = "789848b0e0fe77d409fb08fcbfffc32899a71697" }
68+
odoh-rs = { git = "https://github.com/junkurihara/odoh-rs", rev = "f4d4c5d246d99fac4bd51559ee5826c9d491c114" }
6969
rand = "0.9.2"
7070
base64 = "0.22.1"
7171
byteorder = "1.5.0"
@@ -95,9 +95,9 @@ tracing-opentelemetry = { version = "0.31.0", optional = true }
9595
# httpsig
9696
httpsig-proto = { path = "../httpsig-wire-proto", default-features = false, package = "httpsig-proto" }
9797
httpsig-registry = { path = "../httpsig-registry", default-features = false, package = "httpsig-registry" }
98-
indexmap = { version = "2.12.0" }
99-
httpsig = { version = "0.0.19" }
100-
httpsig-hyper = { version = "0.0.19" }
98+
indexmap = { version = "2.12.1" }
99+
httpsig = { version = "0.0.20" }
100+
httpsig-hyper = { version = "0.0.20" }
101101

102102
# logging
103103
crossbeam-channel = { version = "0.5.15", optional = true }

0 commit comments

Comments
 (0)