Skip to content

Commit a538b50

Browse files
committed
Bump most Rust dependencies
1 parent ab31de7 commit a538b50

File tree

14 files changed

+239
-162
lines changed

14 files changed

+239
-162
lines changed

Cargo.lock

Lines changed: 215 additions & 145 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ version = "1.6.0"
9393

9494
# Packed bitfields
9595
[workspace.dependencies.bitflags]
96-
version = "2.6.0"
96+
version = "2.8.0"
9797

9898
# Bytes
9999
[workspace.dependencies.bytes]
@@ -187,7 +187,7 @@ features = ["yaml", "json"]
187187

188188
# Email sending
189189
[workspace.dependencies.lettre]
190-
version = "0.11.13"
190+
version = "0.11.14"
191191
default-features = false
192192
features = [
193193
"tokio1-rustls-tls",
@@ -246,6 +246,10 @@ features = ["std", "pkcs5", "encryption"]
246246
# Random values
247247
[workspace.dependencies.rand]
248248
version = "0.8.5"
249+
[workspace.dependencies.rand_chacha]
250+
version = "0.3.1"
251+
[workspace.dependencies.rand_core]
252+
version = "0.6.4"
249253

250254
# High-level HTTP client
251255
[workspace.dependencies.reqwest]
@@ -414,7 +418,7 @@ features = ["serde"]
414418

415419
# ULID support
416420
[workspace.dependencies.ulid]
417-
version = "1.1.4"
421+
version = "=1.1.4" # Pinned to the latest version which used rand 0.8
418422
features = ["serde"]
419423

420424
# HTTP mock server

crates/cli/Cargo.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,20 @@ bytes.workspace = true
2020
camino.workspace = true
2121
clap.workspace = true
2222
console = "0.15.10"
23-
dialoguer = { version = "0.11.0", default-features = false, features = ["fuzzy-select", "password"] }
23+
dialoguer = { version = "0.11.0", default-features = false, features = [
24+
"fuzzy-select",
25+
"password",
26+
] }
2427
dotenvy = "0.15.7"
2528
figment.workspace = true
2629
futures-util.workspace = true
2730
http-body-util.workspace = true
2831
hyper.workspace = true
2932
ipnetwork = "0.20.0"
30-
itertools = "0.13.0"
33+
itertools = "0.14.0"
3134
listenfd = "1.0.2"
3235
rand.workspace = true
33-
rand_chacha = "0.3.1"
36+
rand_chacha.workspace = true
3437
reqwest.workspace = true
3538
rustls.workspace = true
3639
sd-notify = "0.4.5"

crates/config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pem-rfc7468 = "0.7.0"
3333
rustls-pki-types = "1.11.0"
3434
rustls-pemfile = "2.2.0"
3535
rand.workspace = true
36-
rand_chacha = "0.3.1"
36+
rand_chacha.workspace = true
3737

3838
indoc = "2.0.5"
3939

crates/handlers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ mime = "0.3.17"
8282
minijinja.workspace = true
8383
minijinja-contrib.workspace = true
8484
rand.workspace = true
85-
rand_chacha = "0.3.1"
85+
rand_chacha.workspace = true
8686
headers.workspace = true
8787
ulid.workspace = true
8888

crates/jose/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ mas-iana.workspace = true
3838

3939
[dev-dependencies]
4040
insta.workspace = true
41-
rand_chacha = "0.3.1"
41+
rand_chacha.workspace = true

crates/keystore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ mas-jose.workspace = true
3636

3737
[dev-dependencies]
3838
insta.workspace = true
39-
rand_chacha = "0.3.1"
39+
rand_chacha.workspace = true

crates/oidc-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ oauth2-types.workspace = true
4040
[dev-dependencies]
4141
assert_matches = "1.5.0"
4242
bitflags.workspace = true
43-
rand_chacha = "0.3.1"
43+
rand_chacha.workspace = true
4444
tokio.workspace = true
4545
wiremock.workspace = true
4646
http-body-util.workspace = true

crates/policy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ workspace = true
1313

1414
[dependencies]
1515
anyhow.workspace = true
16-
opa-wasm = "0.1.3"
16+
opa-wasm = "0.1.4"
1717
serde.workspace = true
1818
serde_json.workspace = true
1919
schemars = { workspace = true, optional = true }

crates/storage-pg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ futures-util.workspace = true
2424
opentelemetry-semantic-conventions.workspace = true
2525

2626
rand.workspace = true
27-
rand_chacha = "0.3.1"
27+
rand_chacha.workspace = true
2828
url.workspace = true
2929
uuid = "1.14.0"
3030
ulid = { workspace = true, features = ["uuid"] }

0 commit comments

Comments
 (0)