Skip to content

Commit 0b4414a

Browse files
committed
chore: deps and bump
1 parent 85bd59e commit 0b4414a

File tree

5 files changed

+28
-28
lines changed

5 files changed

+28
-28
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "0.3.1"
2+
version = "0.3.2"
33
authors = ["Jun Kurihara"]
44
homepage = "https://github.com/junkurihara/modoh-server"
55
repository = "https://github.com/junkurihara/modoh-server"

httpsig-registry/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ edition.workspace = true
1313
publish.workspace = true
1414

1515
[dependencies]
16-
anyhow = { version = "1.0.98" }
17-
thiserror = { version = "2.0.12" }
16+
anyhow = { version = "1.0.99" }
17+
thiserror = { version = "2.0.16" }
1818
pulldown-cmark = { version = "0.13.0", default-features = false }
1919
http = { version = "1.3.1" }
20-
indexmap = { version = "2.10.0" }
20+
indexmap = { version = "2.11.1" }
2121
minisign-verify = { version = "0.2.4" }
22-
reqwest = { version = "0.12.22", default-features = false, features = [
22+
reqwest = { version = "0.12.23", default-features = false, features = [
2323
"rustls-tls",
2424
"http2",
2525
"hickory-dns",
@@ -28,7 +28,7 @@ futures = { version = "0.3.31", default-features = false, features = [
2828
"std",
2929
"async-await",
3030
] }
31-
tokio = { version = "1.47.0", features = [
31+
tokio = { version = "1.47.1", features = [
3232
"net",
3333
"rt-multi-thread",
3434
"time",

httpsig-wire-proto/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ edition.workspace = true
1313
publish.workspace = true
1414

1515
[dependencies]
16-
anyhow = "1.0.98"
17-
thiserror = "2.0.12"
16+
anyhow = "1.0.99"
17+
thiserror = "2.0.16"
1818
rand = "0.9.2"
1919
hpke = "0.13.0"
2020
bytes = "1.10.1"
@@ -25,4 +25,4 @@ ed25519-compact = { version = "2.1.1" }
2525
digest = "0.10.7"
2626
sha2 = "0.10.9"
2727
hkdf = "0.12.4"
28-
httpsig = "0.0.18"
28+
httpsig = "0.0.19"

modoh-bin/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,31 +52,31 @@ modoh-server-lib = { path = "../modoh-lib", default-features = false, features =
5252
"rustls",
5353
] }
5454

55-
anyhow = "1.0.98"
55+
anyhow = "1.0.99"
5656
mimalloc = { version = "*", default-features = false }
5757
serde = { version = "1.0.219", default-features = false, features = ["derive"] }
5858
derive_builder = "0.20.2"
59-
tokio = { version = "1.47.0", default-features = false, features = [
59+
tokio = { version = "1.47.1", default-features = false, features = [
6060
"net",
6161
"rt-multi-thread",
6262
"time",
6363
"sync",
6464
"macros",
6565
] }
66-
async-trait = "0.1.88"
67-
url = "2.5.4"
66+
async-trait = "0.1.89"
67+
url = "2.5.7"
6868

6969
# config
70-
clap = { version = "4.5.42", features = ["std", "cargo", "wrap_help"] }
71-
toml = { version = "0.9.4", default-features = false, features = [
70+
clap = { version = "4.5.47", features = ["std", "cargo", "wrap_help"] }
71+
toml = { version = "0.9.5", default-features = false, features = [
7272
"parse",
7373
"serde",
7474
] }
7575
hot_reload = "0.2.0"
7676

7777
# tracing and metrics
7878
tracing = { version = "0.1.41" }
79-
tracing-subscriber = { version = "0.3.19", features = ["fmt"] }
79+
tracing-subscriber = { version = "0.3.20", features = ["fmt"] }
8080
tracing-opentelemetry = { version = "0.31.0", optional = true }
8181
opentelemetry = { version = "0.30.0", optional = true }
8282
opentelemetry_sdk = { version = "0.30.0", features = [
@@ -92,7 +92,7 @@ opentelemetry-semantic-conventions = { version = "0.30.0", optional = true, feat
9292
] }
9393

9494
# add random otel service id whenever restarting
95-
uuid = { version = "1.17.0", default-features = false, features = [
95+
uuid = { version = "1.18.1", default-features = false, features = [
9696
"v4",
9797
"fast-rng",
9898
], optional = true }

modoh-lib/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@ futures = { version = "0.3.31", default-features = false, features = [
3232
"std",
3333
"async-await",
3434
] }
35-
tokio = { version = "1.47.0", features = [
35+
tokio = { version = "1.47.1", features = [
3636
"net",
3737
"rt-multi-thread",
3838
"time",
3939
"sync",
4040
"macros",
4141
] }
42-
anyhow = "1.0.98"
42+
anyhow = "1.0.99"
4343
tracing = "0.1.41"
44-
thiserror = "2.0.12"
45-
async-trait = "0.1.88"
44+
thiserror = "2.0.16"
45+
async-trait = "0.1.89"
4646

4747
# http handling for both client and server
48-
url = "2.5.4"
48+
url = "2.5.7"
4949
ahash = "0.8.12"
50-
hyper = { version = "1.6.0", default-features = false }
50+
hyper = { version = "1.7.0", default-features = false }
5151
http = "1.3.1"
5252
http-body-util = "0.1.3"
5353
hyper-util = { version = "0.1.16", features = ["full"] }
@@ -75,12 +75,12 @@ serde = { version = "1.0.219", default-features = false }
7575
auth-validator = { git = "https://github.com/junkurihara/rust-token-server", package = "rust-token-server-validator", branch = "develop", default-features = false, features = [
7676
"blind-signatures",
7777
] }
78-
serde_json = { version = "1.0.141" }
78+
serde_json = { version = "1.0.143" }
7979

8080
# access control
8181
ipnet = { version = "2.11.0" }
8282
cedarwood = { version = "0.4.6" }
83-
regex = { version = "1.11.1" }
83+
regex = { version = "1.11.2" }
8484

8585
# metrics
8686
opentelemetry = { version = "0.30.0", optional = true }
@@ -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.10.0" }
99-
httpsig = { version = "0.0.18" }
100-
httpsig-hyper = { version = "0.0.18" }
98+
indexmap = { version = "2.11.1" }
99+
httpsig = { version = "0.0.19" }
100+
httpsig-hyper = { version = "0.0.19" }
101101

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

0 commit comments

Comments
 (0)