chore(deps): update rust-non-major - autoclosed #1909

Closed
renovate wants to merge 1 commit from renovate/rust-non-major into main
Collaborator

This PR contains the following updates:

Package Type Update Change
aws-lc-rs dependencies patch 1.17.01.17.1
bytes workspace.dependencies patch 1.12.01.12.1
ctor workspace.dependencies patch 1.0.71.0.8
memory-serve build-dependencies minor 2.1.02.3.0
memory-serve dependencies minor 2.1.02.3.0
regex workspace.dependencies minor 1.12.41.13.0

Release Notes

aws/aws-lc-rs (aws-lc-rs)

v1.17.1: aws-lc-rs v1.17.1

Compare Source

🎉 AWS-LC FIPS v3 Module Has Been Validated

The AWS-LC FIPS v3 module has been awarded FIPS 140-3 validation by NIST's CMVP:

Seek guidance from a local FIPS compliance expert regarding requirements for your deployment environments. Please consult the Security Policies associated with our certificates if you have questions.

aws-lc-fips-sys (utilized via the fips feature of aws-lc-rs) currently uses the validated FIPS v3 module.

  • In the upcoming aws-lc-rs v1.18.0 release, we plan to switch aws-lc-fips-sys to our FIPS v4 branch.

What's Changed

  • Support linking against a system-installed AWS-LC:
    • Set AWS_LC_SYS_SYSTEM_DIR or let pkg-config / OPENSSL_* environment variables auto-detect an existing AWS-LC installation instead of building from source by @​justsmth in #​1129
    • Support system-installed AWS-LC FIPS library for aws-lc-fips-sys by @​justsmth in #​1143
    • Auto-detect system AWS-LC from OPENSSL_* and pkg-config by @​justsmth in #​1156
    • Gate system AWS-LC on a declared minimum version by @​justsmth in #​1152
  • Implement Send/Sync for RSA hazmat encryption key types by @​justsmth in #​1128
  • Add Salt::none constructor for HKDF by @​justsmth in #​1135
  • Add wasm32-unknown-emscripten build and test support by @​justsmth in #​1059
  • Report specific key rejection reasons for invalid RSA key sizes by @​justsmth in #​1153
Upstream AWS-LC (v5.1.0)

aws-lc-sys now aligns with AWS-LC v5.1.0 (previously v1.73.0). Notable upstream changes include:

Build Improvements
Issues Being Closed
  • RSA hazmat encryption key types missing Send/Sync -- #​1125
  • RSA key rejection reports generic Unspecified for invalid key sizes -- #​1082
  • Build failure when CFLAGS contains LTO flags (Windows/clang) -- #​1132
  • cargo-xwin (clang-cl) jitterentropy build failure on x86_64-pc-windows-msvc -- #​1146
  • Support system-provided AWS-LC library -- #​936
  • cpu_arm_linux.c assumes sys/auxv.h and getauxval (uclibc targets) -- #​1108
  • jitterentropy embeds absolute paths to files -- #​1137

Other Merged PRs

New Contributors

Full Changelog: https://github.com/aws/aws-lc-rs/compare/v1.17.0...v1.17.1

tokio-rs/bytes (bytes)

v1.12.1

Compare Source

Fixed
  • Properly handle when Box::new panics (#​837)
mmastrac/linktime (ctor)

v1.0.8

Compare Source

What's Changed

Full Changelog: https://github.com/mmastrac/linktime/compare/link-section-0.18.3...ctor-1.0.8

tweedegolf/memory-serve (memory-serve)

v2.3.0

Compare Source

rust-lang/regex (regex)

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.

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.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [aws-lc-rs](https://github.com/aws/aws-lc-rs) | dependencies | patch | `1.17.0` → `1.17.1` | | [bytes](https://github.com/tokio-rs/bytes) | workspace.dependencies | patch | `1.12.0` → `1.12.1` | | [ctor](https://github.com/mmastrac/linktime) | workspace.dependencies | patch | `1.0.7` → `1.0.8` | | [memory-serve](https://github.com/tweedegolf/memory-serve) | build-dependencies | minor | `2.1.0` → `2.3.0` | | [memory-serve](https://github.com/tweedegolf/memory-serve) | dependencies | minor | `2.1.0` → `2.3.0` | | [regex](https://github.com/rust-lang/regex) | workspace.dependencies | minor | `1.12.4` → `1.13.0` | --- ### Release Notes <details> <summary>aws/aws-lc-rs (aws-lc-rs)</summary> ### [`v1.17.1`](https://github.com/aws/aws-lc-rs/releases/tag/v1.17.1): aws-lc-rs v1.17.1 [Compare Source](https://github.com/aws/aws-lc-rs/compare/v1.17.0...v1.17.1) 🎉 AWS-LC FIPS v3 Module Has Been Validated The AWS-LC FIPS v3 module has been awarded FIPS 140-3 validation by NIST's CMVP: - [Certificate #&#8203;5314](https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/5314) (static) - [Certificate #&#8203;5298](https://csrc.nist.gov/projects/cryptographic-module-validation-program/certificate/5298) (dynamic) Seek guidance from a local FIPS compliance expert regarding requirements for your deployment environments. Please consult the Security Policies associated with our certificates if you have questions. `aws-lc-fips-sys` (utilized via the `fips` feature of `aws-lc-rs`) currently uses the validated FIPS v3 module. - In the upcoming **aws-lc-rs v1.18.0** release, we plan to switch `aws-lc-fips-sys` to our FIPS v4 branch. #### What's Changed - Support linking against a system-installed AWS-LC: - Set `AWS_LC_SYS_SYSTEM_DIR` or let pkg-config / `OPENSSL_*` environment variables auto-detect an existing AWS-LC installation instead of building from source by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1129](https://github.com/aws/aws-lc-rs/pull/1129) - Support system-installed AWS-LC FIPS library for `aws-lc-fips-sys` by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1143](https://github.com/aws/aws-lc-rs/pull/1143) - Auto-detect system AWS-LC from `OPENSSL_*` and pkg-config by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1156](https://github.com/aws/aws-lc-rs/pull/1156) - Gate system AWS-LC on a declared minimum version by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1152](https://github.com/aws/aws-lc-rs/pull/1152) - Implement `Send`/`Sync` for RSA hazmat encryption key types by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1128](https://github.com/aws/aws-lc-rs/pull/1128) - Add `Salt::none` constructor for HKDF by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1135](https://github.com/aws/aws-lc-rs/pull/1135) - Add `wasm32-unknown-emscripten` build and test support by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1059](https://github.com/aws/aws-lc-rs/pull/1059) - Report specific key rejection reasons for invalid RSA key sizes by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1153](https://github.com/aws/aws-lc-rs/pull/1153) ##### Upstream AWS-LC (v5.1.0) `aws-lc-sys` now aligns with [AWS-LC v5.1.0](https://github.com/aws/aws-lc/releases/tag/v5.1.0) (previously v1.73.0). Notable upstream changes include: - ML-DSA native assembly backends for x86\_64 and aarch64, imported from [mldsa-native](https://github.com/pq-code-package/mldsa-native) by [@&#8203;jakemas](https://github.com/jakemas) in [aws/aws-lc#3195](https://github.com/aws/aws-lc/pull/3195) and [aws/aws-lc#3219](https://github.com/aws/aws-lc/pull/3219) - Security hardening: stack secret zeroing, tightened PKCS7/OCSP/ASN.1 error handling (Various PRs) ##### Build Improvements - Fix `memcmp_check` build failure when CFLAGS contains LTO flags by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1134](https://github.com/aws/aws-lc-rs/pull/1134) - Fix missing `poly_Rq_mul` symbol in Linux x86\_64 build by [@&#8203;Lebei2046](https://github.com/Lebei2046) in [#&#8203;1130](https://github.com/aws/aws-lc-rs/pull/1130) - Apply `-ffile-prefix-map` to jitterentropy builder by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1139](https://github.com/aws/aws-lc-rs/pull/1139) - Select compiler flag dialect by driver mode, not target ABI by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1147](https://github.com/aws/aws-lc-rs/pull/1147) ##### Issues Being Closed - RSA hazmat encryption key types missing `Send`/`Sync` -- [#&#8203;1125](https://github.com/aws/aws-lc-rs/issues/1125) - RSA key rejection reports generic `Unspecified` for invalid key sizes -- [#&#8203;1082](https://github.com/aws/aws-lc-rs/issues/1082) - Build failure when CFLAGS contains LTO flags (Windows/clang) -- [#&#8203;1132](https://github.com/aws/aws-lc-rs/issues/1132) - cargo-xwin (clang-cl) jitterentropy build failure on `x86_64-pc-windows-msvc` -- [#&#8203;1146](https://github.com/aws/aws-lc-rs/issues/1146) - Support system-provided AWS-LC library -- [#&#8203;936](https://github.com/aws/aws-lc-rs/issues/936) - `cpu_arm_linux.c` assumes `sys/auxv.h` and `getauxval` (uclibc targets) -- [#&#8203;1108](https://github.com/aws/aws-lc-rs/issues/1108) - jitterentropy embeds absolute paths to files -- [#&#8203;1137](https://github.com/aws/aws-lc-rs/issues/1137) #### Other Merged PRs - Add ML-DSA aarch64 native assembly to CC builder scripts by [@&#8203;jakemas](https://github.com/jakemas) in [#&#8203;1113](https://github.com/aws/aws-lc-rs/pull/1113) - Clarify HKDF info concatenation and encoding responsibility by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1145](https://github.com/aws/aws-lc-rs/pull/1145) - CI: support zig cross compile for arm32 by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1124](https://github.com/aws/aws-lc-rs/pull/1124) - fix(clippy): fix truncate warnings by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1126](https://github.com/aws/aws-lc-rs/pull/1126) - ci: replace dtolnay/rust-toolchain with direct rustup invocations by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1133](https://github.com/aws/aws-lc-rs/pull/1133) - Reduce AEAD and RSA test iterations under DISABLE\_SLOW\_TESTS by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1119](https://github.com/aws/aws-lc-rs/pull/1119) - ci(compilers): retry-tolerant curl, latest Go, drop unused PowerShell by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1138](https://github.com/aws/aws-lc-rs/pull/1138) - ci(cross): generate MSRV-aware lockfile for alpine-linux by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1150](https://github.com/aws/aws-lc-rs/pull/1150) - Harden GitHub Actions workflows against script injection by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1161](https://github.com/aws/aws-lc-rs/pull/1161) - Bump actions/upload-artifact from 4 to 7 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;1141](https://github.com/aws/aws-lc-rs/pull/1141) - Bump actions/download-artifact from 4 to 8 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;1142](https://github.com/aws/aws-lc-rs/pull/1142) - Bump codecov/codecov-action from 6 to 7 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;1144](https://github.com/aws/aws-lc-rs/pull/1144) - Bump actions/checkout from 6 to 7 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;1155](https://github.com/aws/aws-lc-rs/pull/1155) - Prepare aws-lc-fips-sys v0.13.15 by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1158](https://github.com/aws/aws-lc-rs/pull/1158) - Prepare aws-lc-sys v0.42.0 by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1162](https://github.com/aws/aws-lc-rs/pull/1162) - Prepare aws-lc-rs v1.17.1 by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1164](https://github.com/aws/aws-lc-rs/pull/1164) #### New Contributors - [@&#8203;Lebei2046](https://github.com/Lebei2046) made their first contribution in [#&#8203;1130](https://github.com/aws/aws-lc-rs/pull/1130) **Full Changelog**: <https://github.com/aws/aws-lc-rs/compare/v1.17.0...v1.17.1> </details> <details> <summary>tokio-rs/bytes (bytes)</summary> ### [`v1.12.1`](https://github.com/tokio-rs/bytes/blob/HEAD/CHANGELOG.md#1121-July-8th-2026) [Compare Source](https://github.com/tokio-rs/bytes/compare/v1.12.0...v1.12.1) ##### Fixed - Properly handle when `Box::new` panics ([#&#8203;837](https://github.com/tokio-rs/bytes/issues/837)) </details> <details> <summary>mmastrac/linktime (ctor)</summary> ### [`v1.0.8`](https://github.com/mmastrac/linktime/releases/tag/ctor-1.0.8) [Compare Source](https://github.com/mmastrac/linktime/compare/ctor-1.0.7...ctor-1.0.8) #### What's Changed - Bump versions by [@&#8203;mmastrac](https://github.com/mmastrac) in [#&#8203;490](https://github.com/mmastrac/linktime/pull/490) **Full Changelog**: <https://github.com/mmastrac/linktime/compare/link-section-0.18.3...ctor-1.0.8> </details> <details> <summary>tweedegolf/memory-serve (memory-serve)</summary> ### [`v2.3.0`](https://github.com/tweedegolf/memory-serve/compare/v2.1.0...v2.3.0) [Compare Source](https://github.com/tweedegolf/memory-serve/compare/v2.1.0...v2.3.0) </details> <details> <summary>rust-lang/regex (regex)</summary> ### [`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> --- ### 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](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNDYuMSIsInVwZGF0ZWRJblZlciI6IjQzLjI1Mi4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJEZXBlbmRlbmNpZXMiLCJEZXBlbmRlbmNpZXMvUmVub3ZhdGUiXX0=-->
Member

At present, merging this will reintroduce the version of aws-lc-sys that causes RPM builds to fail; !1908 was done specifically to avoid this.

At present, merging this will reintroduce the version of aws-lc-sys that causes RPM builds to fail; !1908 was done specifically to avoid this.
renovate force-pushed renovate/rust-non-major from 67c120c172
All checks were successful
Auto Labeler / Apply labels based on changed files (pull_request_target) Successful in 4s
Checks / Prek / Check changed files (pull_request) Successful in 8s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 53s
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 5s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m18s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m26s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 8m52s
to 2959550203
All checks were successful
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m1s
Checks / Prek / Check changed files (pull_request) Successful in 4s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m10s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 8m35s
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 5s
2026-07-06 05:05:18 +00:00
Compare
renovate changed title from chore(deps): update rust crate aws-lc-rs to v1.17.1 to chore(deps): update rust-non-major 2026-07-06 05:05:19 +00:00
Owner
Blocked by https://github.com/aws/aws-lc-rs/issues/1168
renovate force-pushed renovate/rust-non-major from 2959550203
All checks were successful
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m1s
Checks / Prek / Check changed files (pull_request) Successful in 4s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m10s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 8m35s
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 5s
to 0ec9d6df5f
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 9s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m2s
Checks / Prek / Check changed files (pull_request) Successful in 4s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m4s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m12s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 10m48s
2026-07-09 05:03:20 +00:00
Compare
renovate force-pushed renovate/rust-non-major from 0ec9d6df5f
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 9s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m2s
Checks / Prek / Check changed files (pull_request) Successful in 4s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m4s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m12s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 10m48s
to e09455a0f1
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 7s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m18s
Checks / Prek / Check changed files (pull_request) Successful in 8s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m0s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m20s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 9m52s
2026-07-10 05:05:30 +00:00
Compare
renovate force-pushed renovate/rust-non-major from e09455a0f1
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 7s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m18s
Checks / Prek / Check changed files (pull_request) Successful in 8s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m0s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m20s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 9m52s
to 64bc5e51f8
Some checks failed
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m10s
Checks / Prek / Check changed files (pull_request) Successful in 6s
Update flake hashes / update-flake-hashes (pull_request) Has been cancelled
Checks / Prek / Clippy and Cargo Tests (pull_request) Has been cancelled
Checks / Prek / Pre-commit & Formatting (pull_request) Has been cancelled
2026-07-12 05:03:27 +00:00
Compare
ginger force-pushed renovate/rust-non-major from 64bc5e51f8
Some checks failed
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m10s
Checks / Prek / Check changed files (pull_request) Successful in 6s
Update flake hashes / update-flake-hashes (pull_request) Has been cancelled
Checks / Prek / Clippy and Cargo Tests (pull_request) Has been cancelled
Checks / Prek / Pre-commit & Formatting (pull_request) Has been cancelled
to 3c2027e4cd
Some checks failed
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 5s
Checks / Prek / Check changed files (pull_request) Successful in 4s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m11s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m20s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m12s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 1m39s
2026-07-13 13:45:20 +00:00
Compare
renovate changed title from chore(deps): update rust-non-major to chore(deps): update rust-non-major - autoclosed 2026-07-14 05:03:28 +00:00
renovate closed this pull request 2026-07-14 05:03:28 +00:00
Some checks failed
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 5s
Required
Details
Checks / Prek / Check changed files (pull_request) Successful in 4s
Required
Details
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m11s
Required
Details
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m20s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m12s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 1m39s
Required
Details

Pull request closed

Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
3 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
continuwuation/continuwuity!1909
No description provided.