Update rust deps #9

Open
vxrenovate wants to merge 1 commits from renovate/rust-deps into master
Member

This PR contains the following updates:

Package Type Update Change
anyhow dev-dependencies patch 1.0.1031.0.104
displaydoc dependencies patch 0.2.60.2.7
generic-array dependencies patch 1.4.31.4.4
hybrid-array dependencies patch 0.4.130.4.14
p521 (source) dev-dependencies patch 0.14.0-rc.150.14.0
regex dev-dependencies minor 1.12.41.13.1
serde (source) dependencies patch 1.0.2281.0.229
serde_json dev-dependencies patch 1.0.1501.0.151
thiserror dev-dependencies patch 2.0.182.0.19
voprf dependencies patch 1.0.0-rc.11.0.0

Release Notes

dtolnay/anyhow (anyhow)

v1.0.104

Compare Source

  • Update syn dev-dependency to version 3
yaahc/displaydoc (displaydoc)

v0.2.7

Compare Source

Added

  • Updated syn dependency to 3.0

Changed

  • Bumped MSRV to 1.71
RustCrypto/hybrid-array (hybrid-array)

v0.4.14

Compare Source

Added
rust-lang/regex (regex)

v1.13.1

Compare Source

===================
This is a release that fixes a bug where incorrect regex match offsets could be
reported. Note that this doesn't impact whether a match occurs or not, just
where it occurs. The match offsets are still valid for slicing, they just may
not refer to the correct leftmost-first match. See
#​1364 for (many) more details.

Bug fixes:

  • #​1354:
    Fixes previously unsound reverse suffix and inner optimizations.

v1.13.0

Compare Source

===================
This release includes a new API, a regex! macro, for lazy compilation of
a regex from a string literal. If you use regexes a lot, it's likely you've
already written one exactly like it. The new macro can be used like this:

use regex::regex;

fn is_match(line: &str) -> bool {
    // The regex will be compiled approximately once and reused automatically.
    // This avoids the footgun of using `Regex::new` here, which would
    // guarantee that it would be compiled every time this routine is called.
    // This would likely make this routine much slower than it needs to be.
    regex!(r"bar|baz").is_match(line)
}

let hay = "\
path/to/foo:54:Blue Harvest
path/to/bar:90:Something, Something, Something, Dark Side
path/to/baz:3:It's a Trap!
";

let matches = hay.lines().filter(|line| is_match(line)).count();
assert_eq!(matches, 2);

Improvements:

  • #​709:
    Add a new regex! macro for efficient and automatic reuse of a compiled regex.
serde-rs/serde (serde)

v1.0.229

Compare Source

  • Update to syn 3
serde-rs/json (serde_json)

v1.0.151

Compare Source

dtolnay/thiserror (thiserror)

v2.0.19

Compare Source

  • Update to syn 3

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate CLI.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [anyhow](https://github.com/dtolnay/anyhow) | dev-dependencies | patch | `1.0.103` → `1.0.104` | | [displaydoc](https://github.com/yaahc/displaydoc) | dependencies | patch | `0.2.6` → `0.2.7` | | [generic-array](https://github.com/fizyk20/generic-array) | dependencies | patch | `1.4.3` → `1.4.4` | | [hybrid-array](https://github.com/RustCrypto/hybrid-array) | dependencies | patch | `0.4.13` → `0.4.14` | | [p521](https://github.com/RustCrypto/elliptic-curves/tree/master/p521) ([source](https://github.com/RustCrypto/elliptic-curves)) | dev-dependencies | patch | `0.14.0-rc.15` → `0.14.0` | | [regex](https://github.com/rust-lang/regex) | dev-dependencies | minor | `1.12.4` → `1.13.1` | | [serde](https://serde.rs) ([source](https://github.com/serde-rs/serde)) | dependencies | patch | `1.0.228` → `1.0.229` | | [serde_json](https://github.com/serde-rs/json) | dev-dependencies | patch | `1.0.150` → `1.0.151` | | [thiserror](https://github.com/dtolnay/thiserror) | dev-dependencies | patch | `2.0.18` → `2.0.19` | | [voprf](https://github.com/vexahub/voprf-vx) | dependencies | patch | `1.0.0-rc.1` → `1.0.0` | --- ### Release Notes <details> <summary>dtolnay/anyhow (anyhow)</summary> ### [`v1.0.104`](https://github.com/dtolnay/anyhow/releases/tag/1.0.104) [Compare Source](https://github.com/dtolnay/anyhow/compare/1.0.103...1.0.104) - Update `syn` dev-dependency to version 3 </details> <details> <summary>yaahc/displaydoc (displaydoc)</summary> ### [`v0.2.7`](https://github.com/yaahc/displaydoc/blob/HEAD/CHANGELOG.md#027---2026-07-28) [Compare Source](https://github.com/yaahc/displaydoc/compare/v0.2.6...v0.2.7) #### Added - Updated `syn` dependency to 3.0 #### Changed - Bumped MSRV to 1.71 </details> <details> <summary>RustCrypto/hybrid-array (hybrid-array)</summary> ### [`v0.4.14`](https://github.com/RustCrypto/hybrid-array/blob/HEAD/CHANGELOG.md#0414-2026-07-30) [Compare Source](https://github.com/RustCrypto/hybrid-array/compare/v0.4.13...v0.4.14) ##### Added - Sizes for `sntrup` ([#&#8203;231]) [#&#8203;231]: https://github.com/RustCrypto/hybrid-array/pull/231 </details> <details> <summary>rust-lang/regex (regex)</summary> ### [`v1.13.1`](https://github.com/rust-lang/regex/blob/HEAD/CHANGELOG.md#1131-2026-07-15) [Compare Source](https://github.com/rust-lang/regex/compare/1.13.0...1.13.1) \=================== This is a release that fixes a bug where incorrect regex match offsets could be reported. Note that this doesn't impact whether a match occurs or not, just where it occurs. The match offsets are still valid for slicing, they just may not refer to the correct leftmost-first match. See [#&#8203;1364](https://github.com/rust-lang/regex/pull/1364) for (many) more details. Bug fixes: - [#&#8203;1354](https://github.com/rust-lang/regex/issues/1354): Fixes previously unsound reverse suffix and inner optimizations. ### [`v1.13.0`](https://github.com/rust-lang/regex/blob/HEAD/CHANGELOG.md#1130-2026-07-09) [Compare Source](https://github.com/rust-lang/regex/compare/1.12.4...1.13.0) \=================== This release includes a new API, a `regex!` macro, for lazy compilation of a regex from a string literal. If you use regexes a lot, it's likely you've already written one exactly like it. The new macro can be used like this: ```rust use regex::regex; fn is_match(line: &str) -> bool { // The regex will be compiled approximately once and reused automatically. // This avoids the footgun of using `Regex::new` here, which would // guarantee that it would be compiled every time this routine is called. // This would likely make this routine much slower than it needs to be. regex!(r"bar|baz").is_match(line) } let hay = "\ path/to/foo:54:Blue Harvest path/to/bar:90:Something, Something, Something, Dark Side path/to/baz:3:It's a Trap! "; let matches = hay.lines().filter(|line| is_match(line)).count(); assert_eq!(matches, 2); ``` Improvements: - [#&#8203;709](https://github.com/rust-lang/regex/issues/709): Add a new `regex!` macro for efficient and automatic reuse of a compiled regex. </details> <details> <summary>serde-rs/serde (serde)</summary> ### [`v1.0.229`](https://github.com/serde-rs/serde/releases/tag/v1.0.229) [Compare Source](https://github.com/serde-rs/serde/compare/v1.0.228...v1.0.229) - Update to syn 3 </details> <details> <summary>serde-rs/json (serde_json)</summary> ### [`v1.0.151`](https://github.com/serde-rs/json/releases/tag/v1.0.151) [Compare Source](https://github.com/serde-rs/json/compare/v1.0.150...v1.0.151) - Add RawValue::from\_string\_unchecked ([#&#8203;1331](https://github.com/serde-rs/json/issues/1331), thanks [@&#8203;WonderLawrence](https://github.com/WonderLawrence)) </details> <details> <summary>dtolnay/thiserror (thiserror)</summary> ### [`v2.0.19`](https://github.com/dtolnay/thiserror/releases/tag/2.0.19) [Compare Source](https://github.com/dtolnay/thiserror/compare/2.0.18...2.0.19) - Update to syn 3 </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate CLI](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNTIuMSIsInVwZGF0ZWRJblZlciI6IjQ0LjExLjYiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOltdfQ==-->
breakingbread force-pushed renovate/rust-deps from 24eeb1ee97 to c5adf8327e 2026-07-09 14:17:41 +02:00 Compare
vxrenovate added 1 commit 2026-08-07 02:07:31 +02:00
Update rust deps
Rust CI / cargo fmt (pull_request) Successful in 1m38s
Rust CI / cargo clippy (pull_request) Failing after 4m32s
Rust CI / test (1.90.0 / no backend / no frontend) (pull_request) Successful in 10m8s
Rust CI / test (stable / no backend / no frontend) (pull_request) Successful in 7m33s
Rust CI / test (stable / no backend / --features argon2) (pull_request) Successful in 8m7s
Rust CI / test (1.90.0 / no backend / --features argon2) (pull_request) Successful in 9m45s
Rust CI / test (stable / no backend / --features serde) (pull_request) Successful in 8m38s
Rust CI / test (1.90.0 / no backend / --features serde) (pull_request) Successful in 10m3s
Rust CI / test (1.90.0 / --features curve25519 / no frontend) (pull_request) Successful in 6m56s
Rust CI / test (stable / --features curve25519 / no frontend) (pull_request) Successful in 7m2s
Rust CI / test (stable / --features curve25519 / --features argon2) (pull_request) Successful in 7m36s
Rust CI / test (1.90.0 / --features curve25519 / --features argon2) (pull_request) Successful in 8m56s
Rust CI / test (stable / --features curve25519 / --features serde) (pull_request) Successful in 8m22s
Rust CI / test (1.90.0 / --features curve25519 / --features serde) (pull_request) Successful in 9m50s
Rust CI / test (stable / --features ecdsa / no frontend) (pull_request) Successful in 7m36s
Rust CI / test (1.90.0 / --features ecdsa / no frontend) (pull_request) Successful in 9m9s
Rust CI / test (stable / --features ecdsa / --features argon2) (pull_request) Successful in 8m28s
Rust CI / test (1.90.0 / --features ecdsa / --features argon2) (pull_request) Successful in 9m57s
Rust CI / test (stable / --features ecdsa / --features serde) (pull_request) Successful in 9m41s
Rust CI / test (1.90.0 / --features ecdsa / --features serde) (pull_request) Successful in 11m16s
Rust CI / test (stable / --features ed25519 / no frontend) (pull_request) Successful in 7m21s
Rust CI / test (1.90.0 / --features ed25519 / no frontend) (pull_request) Successful in 8m58s
Rust CI / test (stable / --features ed25519 / --features argon2) (pull_request) Successful in 7m47s
Rust CI / test (1.90.0 / --features ed25519 / --features argon2) (pull_request) Successful in 8m59s
Rust CI / test (stable / --features ed25519 / --features serde) (pull_request) Successful in 8m29s
Rust CI / test (1.90.0 / --features ed25519 / --features serde) (pull_request) Successful in 9m49s
Rust CI / test (stable / --features ristretto255 / no frontend) (pull_request) Successful in 7m18s
Rust CI / test (1.90.0 / --features ristretto255 / no frontend) (pull_request) Successful in 8m30s
Rust CI / test (stable / --features ristretto255 / --features argon2) (pull_request) Successful in 7m8s
Rust CI / test (1.90.0 / --features ristretto255 / --features argon2) (pull_request) Successful in 8m31s
Rust CI / test (stable / --features ristretto255 / --features serde) (pull_request) Successful in 8m46s
Rust CI / test (1.90.0 / --features ristretto255 / --features serde) (pull_request) Successful in 10m10s
Rust CI / test (stable / --features ristretto255,curve25519,ecdsa,ed25519 / no frontend) (pull_request) Successful in 10m44s
Rust CI / test (1.90.0 / --features ristretto255,curve25519,ecdsa,ed25519 / no frontend) (pull_request) Successful in 12m4s
Rust CI / test (stable / --features ristretto255,curve25519,ecdsa,ed25519 / --features argon2) (pull_request) Successful in 12m31s
Rust CI / test (1.90.0 / --features ristretto255,curve25519,ecdsa,ed25519 / --features argon2) (pull_request) Successful in 13m47s
Rust CI / test (stable / --features ristretto255,curve25519,ecdsa,ed25519 / --features serde) (pull_request) Successful in 13m2s
Rust CI / test (1.90.0 / --features ristretto255,curve25519,ecdsa,ed25519 / --features serde) (pull_request) Successful in 14m35s
Rust CI / test (stable / --features ristretto255,kem / no frontend) (pull_request) Successful in 9m3s
Rust CI / test (1.90.0 / --features ristretto255,kem / no frontend) (pull_request) Successful in 10m32s
Rust CI / test (stable / --features ristretto255,kem / --features argon2) (pull_request) Successful in 9m41s
Rust CI / test (1.90.0 / --features ristretto255,kem / --features argon2) (pull_request) Successful in 11m10s
Rust CI / test (stable / --features ristretto255,kem / --features serde) (pull_request) Successful in 10m43s
Rust CI / test simple_login example (pull_request) Failing after 1m9s
Rust CI / test digital_locker example (pull_request) Failing after 1m4s
Rust CI / test (1.90.0 / --features ristretto255,kem / --features serde) (pull_request) Successful in 12m7s
Rust CI / cargo bench compilation () (pull_request) Successful in 5m51s
Rust CI / cargo bench compilation (--features ristretto255) (pull_request) Successful in 6m16s
Rust CI / cargo audit (pull_request) Successful in 1m14s
Rust CI / cargo bench compilation (--features ristretto255,kem) (pull_request) Successful in 5m29s
Rust CI / no-std (thumbv6m-none-eabi / no backend) (pull_request) Successful in 2m4s
Rust CI / no-std (wasm32-unknown-unknown / no backend) (pull_request) Successful in 2m9s
Rust CI / no-std (thumbv6m-none-eabi / curve25519) (pull_request) Successful in 2m7s
Rust CI / no-std (wasm32-unknown-unknown / curve25519) (pull_request) Successful in 2m5s
Rust CI / no-std (thumbv6m-none-eabi / ecdsa) (pull_request) Successful in 2m6s
Rust CI / no-std (wasm32-unknown-unknown / ecdsa) (pull_request) Successful in 2m5s
Rust CI / no-std (thumbv6m-none-eabi / ed25519) (pull_request) Successful in 2m8s
Rust CI / no-std (wasm32-unknown-unknown / ed25519) (pull_request) Successful in 2m5s
Rust CI / no-std (thumbv6m-none-eabi / ristretto255) (pull_request) Successful in 2m10s
Rust CI / no-std (wasm32-unknown-unknown / ristretto255) (pull_request) Successful in 2m9s
Rust CI / no-std (thumbv6m-none-eabi / ristretto255,curve25519,ecdsa,ed25519) (pull_request) Successful in 2m12s
Rust CI / no-std (wasm32-unknown-unknown / ristretto255,curve25519,ecdsa,ed25519) (pull_request) Successful in 2m13s
c231be1217
vxrenovate force-pushed renovate/rust-deps from c5adf8327e to c231be1217 2026-08-07 02:07:31 +02:00 Compare
Some required checks failed
Rust CI / cargo fmt (pull_request) Successful in 1m38s
Rust CI / cargo clippy (pull_request) Failing after 4m32s
Rust CI / test (1.90.0 / no backend / no frontend) (pull_request) Successful in 10m8s
Rust CI / test (stable / no backend / no frontend) (pull_request) Successful in 7m33s
Rust CI / test (stable / no backend / --features argon2) (pull_request) Successful in 8m7s
Rust CI / test (1.90.0 / no backend / --features argon2) (pull_request) Successful in 9m45s
Rust CI / test (stable / no backend / --features serde) (pull_request) Successful in 8m38s
Rust CI / test (1.90.0 / no backend / --features serde) (pull_request) Successful in 10m3s
Rust CI / test (1.90.0 / --features curve25519 / no frontend) (pull_request) Successful in 6m56s
Rust CI / test (stable / --features curve25519 / no frontend) (pull_request) Successful in 7m2s
Rust CI / test (stable / --features curve25519 / --features argon2) (pull_request) Successful in 7m36s
Rust CI / test (1.90.0 / --features curve25519 / --features argon2) (pull_request) Successful in 8m56s
Rust CI / test (stable / --features curve25519 / --features serde) (pull_request) Successful in 8m22s
Rust CI / test (1.90.0 / --features curve25519 / --features serde) (pull_request) Successful in 9m50s
Rust CI / test (stable / --features ecdsa / no frontend) (pull_request) Successful in 7m36s
Rust CI / test (1.90.0 / --features ecdsa / no frontend) (pull_request) Successful in 9m9s
Rust CI / test (stable / --features ecdsa / --features argon2) (pull_request) Successful in 8m28s
Rust CI / test (1.90.0 / --features ecdsa / --features argon2) (pull_request) Successful in 9m57s
Rust CI / test (stable / --features ecdsa / --features serde) (pull_request) Successful in 9m41s
Rust CI / test (1.90.0 / --features ecdsa / --features serde) (pull_request) Successful in 11m16s
Rust CI / test (stable / --features ed25519 / no frontend) (pull_request) Successful in 7m21s
Rust CI / test (1.90.0 / --features ed25519 / no frontend) (pull_request) Successful in 8m58s
Rust CI / test (stable / --features ed25519 / --features argon2) (pull_request) Successful in 7m47s
Rust CI / test (1.90.0 / --features ed25519 / --features argon2) (pull_request) Successful in 8m59s
Rust CI / test (stable / --features ed25519 / --features serde) (pull_request) Successful in 8m29s
Rust CI / test (1.90.0 / --features ed25519 / --features serde) (pull_request) Successful in 9m49s
Rust CI / test (stable / --features ristretto255 / no frontend) (pull_request) Successful in 7m18s
Rust CI / test (1.90.0 / --features ristretto255 / no frontend) (pull_request) Successful in 8m30s
Rust CI / test (stable / --features ristretto255 / --features argon2) (pull_request) Successful in 7m8s
Rust CI / test (1.90.0 / --features ristretto255 / --features argon2) (pull_request) Successful in 8m31s
Rust CI / test (stable / --features ristretto255 / --features serde) (pull_request) Successful in 8m46s
Rust CI / test (1.90.0 / --features ristretto255 / --features serde) (pull_request) Successful in 10m10s
Rust CI / test (stable / --features ristretto255,curve25519,ecdsa,ed25519 / no frontend) (pull_request) Successful in 10m44s
Rust CI / test (1.90.0 / --features ristretto255,curve25519,ecdsa,ed25519 / no frontend) (pull_request) Successful in 12m4s
Rust CI / test (stable / --features ristretto255,curve25519,ecdsa,ed25519 / --features argon2) (pull_request) Successful in 12m31s
Rust CI / test (1.90.0 / --features ristretto255,curve25519,ecdsa,ed25519 / --features argon2) (pull_request) Successful in 13m47s
Rust CI / test (stable / --features ristretto255,curve25519,ecdsa,ed25519 / --features serde) (pull_request) Successful in 13m2s
Rust CI / test (1.90.0 / --features ristretto255,curve25519,ecdsa,ed25519 / --features serde) (pull_request) Successful in 14m35s
Rust CI / test (stable / --features ristretto255,kem / no frontend) (pull_request) Successful in 9m3s
Rust CI / test (1.90.0 / --features ristretto255,kem / no frontend) (pull_request) Successful in 10m32s
Rust CI / test (stable / --features ristretto255,kem / --features argon2) (pull_request) Successful in 9m41s
Rust CI / test (1.90.0 / --features ristretto255,kem / --features argon2) (pull_request) Successful in 11m10s
Rust CI / test (stable / --features ristretto255,kem / --features serde) (pull_request) Successful in 10m43s
Rust CI / test simple_login example (pull_request) Failing after 1m9s
Rust CI / test digital_locker example (pull_request) Failing after 1m4s
Rust CI / test (1.90.0 / --features ristretto255,kem / --features serde) (pull_request) Successful in 12m7s
Rust CI / cargo bench compilation () (pull_request) Successful in 5m51s
Rust CI / cargo bench compilation (--features ristretto255) (pull_request) Successful in 6m16s
Rust CI / cargo audit (pull_request) Successful in 1m14s
Rust CI / cargo bench compilation (--features ristretto255,kem) (pull_request) Successful in 5m29s
Rust CI / no-std (thumbv6m-none-eabi / no backend) (pull_request) Successful in 2m4s
Rust CI / no-std (wasm32-unknown-unknown / no backend) (pull_request) Successful in 2m9s
Rust CI / no-std (thumbv6m-none-eabi / curve25519) (pull_request) Successful in 2m7s
Rust CI / no-std (wasm32-unknown-unknown / curve25519) (pull_request) Successful in 2m5s
Rust CI / no-std (thumbv6m-none-eabi / ecdsa) (pull_request) Successful in 2m6s
Rust CI / no-std (wasm32-unknown-unknown / ecdsa) (pull_request) Successful in 2m5s
Rust CI / no-std (thumbv6m-none-eabi / ed25519) (pull_request) Successful in 2m8s
Rust CI / no-std (wasm32-unknown-unknown / ed25519) (pull_request) Successful in 2m5s
Rust CI / no-std (thumbv6m-none-eabi / ristretto255) (pull_request) Successful in 2m10s
Rust CI / no-std (wasm32-unknown-unknown / ristretto255) (pull_request) Successful in 2m9s
Rust CI / no-std (thumbv6m-none-eabi / ristretto255,curve25519,ecdsa,ed25519) (pull_request) Successful in 2m12s
Rust CI / no-std (wasm32-unknown-unknown / ristretto255,curve25519,ecdsa,ed25519) (pull_request) Successful in 2m13s
You are not authorized to merge this pull request.
This pull request can be merged automatically.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/rust-deps:renovate/rust-deps
git checkout renovate/rust-deps
Sign in to join this conversation.
No Reviewers
2 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: vexahub/opaque-vx#9