chore(deps): update rust-non-major #2070

Merged
Jade merged 1 commit from renovate/rust-non-major into main 2026-08-08 12:23:54 +00:00
Collaborator

This PR contains the following updates:

Package Type Update Change
aws-lc-rs dependencies minor 1.17.31.18.0
bytesize workspace.dependencies minor 2.4.22.7.0
clap workspace.dependencies patch 4.6.44.6.6
ctor workspace.dependencies patch 1.0.111.0.12
http workspace.dependencies minor 1.4.21.5.0
toml workspace.dependencies patch 1.1.3+spec-1.1.01.1.4

Release Notes

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

v1.18.0: aws-lc-rs v1.18.0

Compare Source

AWS-LC-FIPS module updated to 4.x

This release switches aws-lc-fips-sys (used via the fips feature) from the AWS-LC-FIPS 3.x branch to AWS-LC-FIPS 4.0.

  • If your project requires FIPS compliance, please consult your local FIPS compliance experts before upgrading. The FIPS v3 module shipped in aws-lc-rs v1.17.x is FIPS 140-3 validated (Certificate #​5314 static, Certificate #​5298 dynamic). The 4.x module has completed validation testing by an accredited lab and has been submitted to NIST for certification. Refer to the CMVP Modules In Progress List for its current status, and to FIPS.md for security policies and supported operating environments.
  • Consumers who need to remain on the FIPS 3.x module should pin aws-lc-rs to <1.18.0. See the Cargo Book on Specifying Dependencies.
AWS-LC-FIPS module aws-lc-rs
2.0.x <1.12.0
3.0.x <1.18.0
4.x latest

What's Changed

  • Switch aws-lc-fips-sys to AWS-LC's "FIPS 4.0" branch by @​justsmth in #​1185
    • aws-lc-fips-sys v0.13.16 -> v0.14.0. Please see the call-out above.
  • The ML-DSA signature APIs are now stable 🎉 by @​justsmth in #​1188 and #​1189
    • PqdsaKeyPair, PqdsaPublicKey, PqdsaPrivateKey, PqdsaSigningAlgorithm, PqdsaVerificationAlgorithm, and the ML_DSA_44 / ML_DSA_65 / ML_DSA_87 algorithms (and their _SIGNING counterparts) now live in aws_lc_rs::signature. ML-DSA no longer requires the unstable feature, and is now available under fips -- the FIPS 4.0 module provides ML-DSA, which is what had kept these APIs unstable. See our updated API documentation.
    • Please migrate any use of aws_lc_rs::unstable::signature to aws_lc_rs::signature. The unstable::signature module remains as deprecated aliases and will be removed in a future release.
    • PqdsaKeyPair::to_pkcs8 has been renamed to to_pkcs8v1, since elsewhere in the module an unqualified to_pkcs8 means PKCS#8 v2. A deprecated to_pkcs8 alias remains available under the unstable feature.
    • Existing unstable consumers continue to compile, with deprecation warnings. Two cases need a source change: builds using #![deny(warnings)], and code that glob-imports both signature::* and unstable::signature::*, which now needs an explicit import to disambiguate.
    • Behavior change: PqdsaVerificationAlgorithm::parsed_verify_digest_sig now always returns Unspecified. Digest-then-verify is not an operation defined by FIPS 204 -- pure ML-DSA signs the message itself, and the pre-hash variant (HashML-DSA) uses a distinct domain separator that this API does not implement.
  • Add out-of-place AEAD sealing by @​iainmcgin in #​1183
    • Adds seal_separate_out_of_place to LessSafeKey and TlsRecordSealingKey. Every sealing entry point was previously in-place, so a caller whose plaintext was borrowed or shared had to copy it into a scratch buffer purely to make it mutable. This mirrors the existing open_separate_gather, so the sealing and opening directions now match.
  • Add rsa::KeyPair::from_components for constructing RSA key pairs from raw components by @​justsmth in #​1175
    • Adds rsa::KeyPairComponents and rsa::KeyPair::from_components, matching ring 0.17, so a signing key can be built from formats such as JWK without first encoding the components as DER. Unlike ring, d and the CRT parameters are validated at construction using RSA_check_key, so keys with inconsistent or placeholder values that ring accepts may be rejected. Unnecessary generic bounds were also removed from PublicKeyComponents.
  • Automatically optimize aws-lc for size when opt-level is "s" or "z" by @​justsmth in #​1159
    • The builder now enables AWS-LC's size-optimized configuration (OPENSSL_SMALL, and no AVX-512 assembly on x86_64) whenever Cargo is already building for size. In CI, a small binary exercising SHA-256, AES-256-GCM, and ECDSA P-256 is 36-50% smaller at opt-level=z than at opt-level=3: 50% on x86_64 Linux, 48% on aarch64 macOS, 39% on x86_64 Windows, 36% on aarch64 Linux. Your own savings depend on how much of AWS-LC your binary retains.
    • No algorithms are removed and outputs are unchanged; the trade-off is slower elliptic-curve performance. Set AWS_LC_SYS_SMALL=1/=0 to force it on or off independently of opt-level.
    • FIPS builds do not opt in automatically: aws-lc-fips-sys requires an explicit AWS_LC_FIPS_SYS_SMALL=1, and warns when it is set.
    • Partially addresses #​745; the default size under opt-level=3 footprint is unchanged.
  • Export native library build metadata from the -sys crates by @​justsmth in #​1187, including original commits from @​glebpom in #​1184
    • Downstream build scripts compiling C code against AWS-LC can now locate our artifacts via DEP_AWS_LC_* / DEP_AWS_LC_FIPS_* (libdir, libcrypto_path, link_kind, and libssl_path with ssl), consistently across the CC, CMake, and system-library build paths. Existing linker directives are unchanged. On Windows, the *_path values are the link-time artifact (import library), not the runtime DLL.
  • Key wrap hardening by @​justsmth in #​1190 and #​1191
    • KeyEncryptionKey::unwrap no longer underflows on ciphertexts shorter than 8 bytes. Since the ciphertext is untrusted input, builds with overflow-checks = true would panic instead of returning the documented Err(Unspecified); default release builds were unaffected.
    • KeyEncryptionKey now zeroizes its key material on drop, consistent with the other key types in this crate.
  • docs(signature): correct outdated note about signing a separate digest by @​WesleyRosenblum in #​1186
Upstream AWS-LC (v5.5.0)

aws-lc-sys v0.44.0 aligns with AWS-LC v5.5.0 (previously v5.2.0). See also the release notes for v5.3.0 and v5.4.0.

Build Improvements
  • Fix bindings copy from read-only prebuilt AWS-LC install by @​justsmth in #​1194
    • Copies into OUT_DIR now remove any stale destination first and leave the fresh copy writable, so building against a read-only prebuilt install (e.g. the Nix store) no longer fails with Permission denied on a build-script rerun. An OUT_DIR already poisoned by an earlier build now recovers without a cargo clean.
Issues Being Closed
  • ML-DSA stabilization? -- #​964
  • Expose out-of-place AEAD sealing -- #​1182
  • Construct an RSA Key pair from raw private components -- #​791
  • aws-lc-sys build script fails to copy bindings from read only prebuild aws-lc on repeat runs -- #​1193

Other Merged PRs

New Contributors

Full Changelog: https://github.com/aws/aws-lc-rs/compare/v1.17.3...v1.18.0

bytesize-rs/bytesize (bytesize)

v2.7.0

Compare Source

  • Remove no-alloc support because it removed ByteSize::display() when default features were disabled.

v2.6.0

Compare Source

  • Add display styles for IEC and SI bit units.

v2.5.0

Compare Source

  • Honor precision when a width is set with formatting args.
  • Add #[no_alloc] support.
clap-rs/clap (clap)

v4.6.6

Compare Source

Features
  • Add Command::get_overridden_usage

v4.6.5

Compare Source

Fixes
  • (help) Correctly mark which value_names are optional with num_args
mmastrac/linktime (ctor)

v1.0.12

Compare Source

What's Changed

  • Bumped internal proc macro minimum version to pick up PR #​495 (should not result in any downstream visible changes)

Full Changelog: https://github.com/mmastrac/linktime/compare/ctor-1.0.11...ctor-1.0.12

hyperium/http (http)

v1.5.0

Compare Source

  • Add Method::QUERY constant for the new QUERY method defined in RFC 10008.
  • Fix uri::Builder::path_and_query() to allow empty strings to mean no path.
  • Fix uri::PathAndQuery parsing to enforce URI max length.
toml-rs/toml (toml)

v1.1.4

Compare Source


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 | minor | `1.17.3` → `1.18.0` | | [bytesize](https://github.com/bytesize-rs/bytesize) | workspace.dependencies | minor | `2.4.2` → `2.7.0` | | [clap](https://github.com/clap-rs/clap) | workspace.dependencies | patch | `4.6.4` → `4.6.6` | | [ctor](https://github.com/mmastrac/linktime) | workspace.dependencies | patch | `1.0.11` → `1.0.12` | | [http](https://github.com/hyperium/http) | workspace.dependencies | minor | `1.4.2` → `1.5.0` | | [toml](https://github.com/toml-rs/toml) | workspace.dependencies | patch | `1.1.3+spec-1.1.0` → `1.1.4` | --- ### Release Notes <details> <summary>aws/aws-lc-rs (aws-lc-rs)</summary> ### [`v1.18.0`](https://github.com/aws/aws-lc-rs/releases/tag/v1.18.0): aws-lc-rs v1.18.0 [Compare Source](https://github.com/aws/aws-lc-rs/compare/v1.17.3...v1.18.0) #### AWS-LC-FIPS module updated to 4.x This release switches `aws-lc-fips-sys` (used via the `fips` feature) from the AWS-LC-FIPS 3.x branch to [AWS-LC-FIPS 4.0](https://github.com/aws/aws-lc/releases/tag/v4.0.0). - **If your project requires FIPS compliance, please consult your local FIPS compliance experts before upgrading.** The FIPS v3 module shipped in aws-lc-rs v1.17.x is FIPS 140-3 validated ([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). The 4.x module has completed validation testing by an accredited lab and has been submitted to NIST for certification. Refer to the [CMVP Modules In Progress List](https://csrc.nist.gov/Projects/cryptographic-module-validation-program/modules-in-process/Modules-In-Process-List) for its current status, and to [FIPS.md](https://github.com/aws/aws-lc/blob/main/crypto/fipsmodule/FIPS.md) for security policies and supported operating environments. - Consumers who need to remain on the FIPS 3.x module should pin `aws-lc-rs` to `<1.18.0`. See the Cargo Book on [Specifying Dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html). | AWS-LC-FIPS module | aws-lc-rs | | ------------------ | --------- | | 2.0.x | <1.12.0 | | 3.0.x | <1.18.0 | | 4.x | *latest* | #### What's Changed - Switch `aws-lc-fips-sys` to AWS-LC's "FIPS 4.0" branch by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1185](https://github.com/aws/aws-lc-rs/pull/1185) - `aws-lc-fips-sys` v0.13.16 -> v0.14.0. Please see the call-out above. - **The ML-DSA signature APIs are now stable** 🎉 by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1188](https://github.com/aws/aws-lc-rs/pull/1188) and [#&#8203;1189](https://github.com/aws/aws-lc-rs/pull/1189) - `PqdsaKeyPair`, `PqdsaPublicKey`, `PqdsaPrivateKey`, `PqdsaSigningAlgorithm`, `PqdsaVerificationAlgorithm`, and the `ML_DSA_44` / `ML_DSA_65` / `ML_DSA_87` algorithms (and their `_SIGNING` counterparts) now live in `aws_lc_rs::signature`. ML-DSA no longer requires the `unstable` feature, and is now available under `fips` -- the FIPS 4.0 module provides ML-DSA, which is what had kept these APIs unstable. See our updated [API documentation](https://docs.rs/aws-lc-rs/latest/aws_lc_rs/signature/index.html). - Please migrate any use of `aws_lc_rs::unstable::signature` to `aws_lc_rs::signature`. The `unstable::signature` module remains as deprecated aliases and will be removed in a future release. - `PqdsaKeyPair::to_pkcs8` has been renamed to `to_pkcs8v1`, since elsewhere in the module an unqualified `to_pkcs8` means [PKCS#8](https://github.com/PKCS/aws-lc-rs/issues/8) v2. A deprecated `to_pkcs8` alias remains available under the `unstable` feature. - Existing `unstable` consumers continue to compile, with deprecation warnings. Two cases need a source change: builds using `#![deny(warnings)]`, and code that glob-imports both `signature::*` and `unstable::signature::*`, which now needs an explicit import to disambiguate. - **Behavior change:** `PqdsaVerificationAlgorithm::parsed_verify_digest_sig` now always returns `Unspecified`. Digest-then-verify is not an operation defined by FIPS 204 -- pure ML-DSA signs the message itself, and the pre-hash variant (HashML-DSA) uses a distinct domain separator that this API does not implement. - Add out-of-place AEAD sealing by [@&#8203;iainmcgin](https://github.com/iainmcgin) in [#&#8203;1183](https://github.com/aws/aws-lc-rs/pull/1183) - Adds `seal_separate_out_of_place` to `LessSafeKey` and `TlsRecordSealingKey`. Every sealing entry point was previously in-place, so a caller whose plaintext was borrowed or shared had to copy it into a scratch buffer purely to make it mutable. This mirrors the existing `open_separate_gather`, so the sealing and opening directions now match. - Add `rsa::KeyPair::from_components` for constructing RSA key pairs from raw components by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1175](https://github.com/aws/aws-lc-rs/pull/1175) - Adds `rsa::KeyPairComponents` and `rsa::KeyPair::from_components`, matching ring 0.17, so a signing key can be built from formats such as JWK without first encoding the components as DER. Unlike ring, `d` and the CRT parameters are validated at construction using `RSA_check_key`, so keys with inconsistent or placeholder values that ring accepts may be rejected. Unnecessary generic bounds were also removed from `PublicKeyComponents`. - Automatically optimize aws-lc for size when opt-level is "s" or "z" by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1159](https://github.com/aws/aws-lc-rs/pull/1159) - The builder now enables AWS-LC's size-optimized configuration (`OPENSSL_SMALL`, and no AVX-512 assembly on x86\_64) whenever Cargo is already building for size. In CI, a small binary exercising SHA-256, AES-256-GCM, and ECDSA P-256 is **36-50% smaller** at `opt-level=z` than at `opt-level=3`: 50% on x86\_64 Linux, 48% on aarch64 macOS, 39% on x86\_64 Windows, 36% on aarch64 Linux. Your own savings depend on how much of AWS-LC your binary retains. - No algorithms are removed and outputs are unchanged; the trade-off is slower elliptic-curve performance. Set `AWS_LC_SYS_SMALL=1`/`=0` to force it on or off independently of opt-level. - FIPS builds do not opt in automatically: `aws-lc-fips-sys` requires an explicit `AWS_LC_FIPS_SYS_SMALL=1`, and warns when it is set. - Partially addresses [#&#8203;745](https://github.com/aws/aws-lc-rs/issues/745); the default size under `opt-level=3` footprint is unchanged. - Export native library build metadata from the -sys crates by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1187](https://github.com/aws/aws-lc-rs/pull/1187), including original commits from [@&#8203;glebpom](https://github.com/glebpom) in [#&#8203;1184](https://github.com/aws/aws-lc-rs/pull/1184) - Downstream build scripts compiling C code against AWS-LC can now locate our artifacts via `DEP_AWS_LC_*` / `DEP_AWS_LC_FIPS_*` (`libdir`, `libcrypto_path`, `link_kind`, and `libssl_path` with `ssl`), consistently across the CC, CMake, and system-library build paths. Existing linker directives are unchanged. On Windows, the `*_path` values are the link-time artifact (import library), not the runtime DLL. - Key wrap hardening by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1190](https://github.com/aws/aws-lc-rs/pull/1190) and [#&#8203;1191](https://github.com/aws/aws-lc-rs/pull/1191) - `KeyEncryptionKey::unwrap` no longer underflows on ciphertexts shorter than 8 bytes. Since the ciphertext is untrusted input, builds with `overflow-checks = true` would panic instead of returning the documented `Err(Unspecified)`; default release builds were unaffected. - `KeyEncryptionKey` now zeroizes its key material on drop, consistent with the other key types in this crate. - docs(signature): correct outdated note about signing a separate digest by [@&#8203;WesleyRosenblum](https://github.com/WesleyRosenblum) in [#&#8203;1186](https://github.com/aws/aws-lc-rs/pull/1186) ##### Upstream AWS-LC (v5.5.0) `aws-lc-sys` v0.44.0 aligns with [AWS-LC v5.5.0](https://github.com/aws/aws-lc/releases/tag/v5.5.0) (previously v5.2.0). See also the release notes for [v5.3.0](https://github.com/aws/aws-lc/releases/tag/v5.3.0) and [v5.4.0](https://github.com/aws/aws-lc/releases/tag/v5.4.0). ##### Build Improvements - Fix bindings copy from read-only prebuilt AWS-LC install by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1194](https://github.com/aws/aws-lc-rs/pull/1194) - Copies into `OUT_DIR` now remove any stale destination first and leave the fresh copy writable, so building against a read-only prebuilt install (e.g. the Nix store) no longer fails with `Permission denied` on a build-script rerun. An `OUT_DIR` already poisoned by an earlier build now recovers without a `cargo clean`. ##### Issues Being Closed - ML-DSA stabilization? -- [#&#8203;964](https://github.com/aws/aws-lc-rs/issues/964) - Expose out-of-place AEAD sealing -- [#&#8203;1182](https://github.com/aws/aws-lc-rs/issues/1182) - Construct an RSA Key pair from raw private components -- [#&#8203;791](https://github.com/aws/aws-lc-rs/issues/791) - aws-lc-sys build script fails to copy bindings from read only prebuild aws-lc on repeat runs -- [#&#8203;1193](https://github.com/aws/aws-lc-rs/issues/1193) #### Other Merged PRs - ci: fix mdbook test failure and run docs checks on PRs by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1181](https://github.com/aws/aws-lc-rs/pull/1181) - Publish script fixes: cargo clean failure, and verify aws-lc-rs against minimum published sys crates by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1179](https://github.com/aws/aws-lc-rs/pull/1179) - Prepare aws-lc-sys v0.44.0 by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1199](https://github.com/aws/aws-lc-rs/pull/1199) - Prepare aws-lc-rs v1.18.0 by [@&#8203;justsmth](https://github.com/justsmth) in [#&#8203;1200](https://github.com/aws/aws-lc-rs/pull/1200) #### New Contributors - [@&#8203;iainmcgin](https://github.com/iainmcgin) made their first contribution in [#&#8203;1183](https://github.com/aws/aws-lc-rs/pull/1183) - [@&#8203;glebpom](https://github.com/glebpom) made their first contribution in [#&#8203;1184](https://github.com/aws/aws-lc-rs/pull/1184) (landed via [#&#8203;1187](https://github.com/aws/aws-lc-rs/pull/1187)) **Full Changelog**: <https://github.com/aws/aws-lc-rs/compare/v1.17.3...v1.18.0> </details> <details> <summary>bytesize-rs/bytesize (bytesize)</summary> ### [`v2.7.0`](https://github.com/bytesize-rs/bytesize/blob/HEAD/CHANGELOG.md#270) [Compare Source](https://github.com/bytesize-rs/bytesize/compare/bytesize-v2.6.0...bytesize-v2.7.0) - Remove no-alloc support because it removed `ByteSize::display()` when default features were disabled. ### [`v2.6.0`](https://github.com/bytesize-rs/bytesize/blob/HEAD/CHANGELOG.md#260) [Compare Source](https://github.com/bytesize-rs/bytesize/compare/bytesize-v2.5.0...bytesize-v2.6.0) - Add display styles for IEC and SI bit units. ### [`v2.5.0`](https://github.com/bytesize-rs/bytesize/blob/HEAD/CHANGELOG.md#250) [Compare Source](https://github.com/bytesize-rs/bytesize/compare/bytesize-v2.4.2...bytesize-v2.5.0) - Honor precision when a width is set with formatting args. - Add `#[no_alloc]` support. </details> <details> <summary>clap-rs/clap (clap)</summary> ### [`v4.6.6`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#466---2026-08-06) [Compare Source](https://github.com/clap-rs/clap/compare/v4.6.5...v4.6.6) ##### Features - Add `Command::get_overridden_usage` ### [`v4.6.5`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#465---2026-07-31) [Compare Source](https://github.com/clap-rs/clap/compare/v4.6.4...v4.6.5) ##### Fixes - *(help)* Correctly mark which `value_names` are optional with `num_args` </details> <details> <summary>mmastrac/linktime (ctor)</summary> ### [`v1.0.12`](https://github.com/mmastrac/linktime/releases/tag/ctor-1.0.12) [Compare Source](https://github.com/mmastrac/linktime/compare/ctor-1.0.11...ctor-1.0.12) #### What's Changed - Bumped internal proc macro minimum version to pick up PR [#&#8203;495](https://github.com/mmastrac/linktime/issues/495) (should not result in any downstream visible changes) **Full Changelog**: <https://github.com/mmastrac/linktime/compare/ctor-1.0.11...ctor-1.0.12> </details> <details> <summary>hyperium/http (http)</summary> ### [`v1.5.0`](https://github.com/hyperium/http/blob/HEAD/CHANGELOG.md#150-July-29-2026) [Compare Source](https://github.com/hyperium/http/compare/v1.4.2...v1.5.0) - Add `Method::QUERY` constant for the new QUERY method defined in RFC 10008. - Fix `uri::Builder::path_and_query()` to allow empty strings to mean no path. - Fix `uri::PathAndQuery` parsing to enforce URI max length. </details> <details> <summary>toml-rs/toml (toml)</summary> ### [`v1.1.4`](https://github.com/toml-rs/toml/compare/toml-v1.1.3...toml-v1.1.4) [Compare Source](https://github.com/toml-rs/toml/compare/toml-v1.1.3...toml-v1.1.4) </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:eyJjcmVhdGVkSW5WZXIiOiI0My4yODEuMSIsInVwZGF0ZWRJblZlciI6IjQzLjI4OC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJEZXBlbmRlbmNpZXMiLCJEZXBlbmRlbmNpZXMvUmVub3ZhdGUiXX0=-->
chore(deps): update rust crate toml to v1.1.4
All checks were successful
Auto Labeler / Apply labels based on changed files (pull_request_target) Successful in 3s
Checks / Prek / Check changed files (pull_request) Successful in 5s
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m10s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m27s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m6s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 11m20s
647e1dbe35
renovate force-pushed renovate/rust-non-major from 647e1dbe35
All checks were successful
Auto Labeler / Apply labels based on changed files (pull_request_target) Successful in 3s
Checks / Prek / Check changed files (pull_request) Successful in 5s
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m10s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m27s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m6s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 11m20s
to 032e1997df
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 7s
Checks / Prek / Check changed files (pull_request) Successful in 5s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m0s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m9s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m16s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 15m3s
2026-07-30 05:02:46 +00:00
Compare
renovate changed title from chore(deps): update rust crate toml to v1.1.4 to chore(deps): update rust-non-major 2026-07-30 05:02:47 +00:00
renovate force-pushed renovate/rust-non-major from 032e1997df
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 7s
Checks / Prek / Check changed files (pull_request) Successful in 5s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m0s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m9s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m16s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 15m3s
to 732a48485e
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 7s
Checks / Prek / Check changed files (pull_request) Successful in 5s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m2s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m11s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m17s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 11m15s
2026-07-31 05:04:44 +00:00
Compare
renovate force-pushed renovate/rust-non-major from 732a48485e
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 7s
Checks / Prek / Check changed files (pull_request) Successful in 5s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m2s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m11s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m17s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 11m15s
to f56e6effa2
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 7s
Checks / Prek / Check changed files (pull_request) Successful in 5s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m13s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m17s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 10m15s
2026-08-01 05:04:47 +00:00
Compare
renovate force-pushed renovate/rust-non-major from f56e6effa2
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 7s
Checks / Prek / Check changed files (pull_request) Successful in 5s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m13s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m17s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 10m15s
to 284cffd9b9
Some checks failed
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Checks / Prek / Check changed files (pull_request) Successful in 4s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m4s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m15s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m4s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 4m35s
2026-08-02 05:04:36 +00:00
Compare
renovate force-pushed renovate/rust-non-major from 284cffd9b9
Some checks failed
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Checks / Prek / Check changed files (pull_request) Successful in 4s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m4s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m15s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m4s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 4m35s
to abe35eee27
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m12s
Checks / Prek / Check changed files (pull_request) Successful in 6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m33s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m15s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 12m31s
2026-08-05 05:03:19 +00:00
Compare
renovate force-pushed renovate/rust-non-major from abe35eee27
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m12s
Checks / Prek / Check changed files (pull_request) Successful in 6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m33s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m15s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 12m31s
to c2ac77ada4
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 1m2s
Checks / Prek / Check changed files (pull_request) Successful in 6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m13s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m19s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 9m52s
2026-08-06 05:05:08 +00:00
Compare
renovate force-pushed renovate/rust-non-major from c2ac77ada4
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 1m2s
Checks / Prek / Check changed files (pull_request) Successful in 6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m13s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m19s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 9m52s
to a959594458
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m1s
Checks / Prek / Check changed files (pull_request) Successful in 6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m11s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m28s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 9m20s
2026-08-07 05:02:45 +00:00
Compare
renovate force-pushed renovate/rust-non-major from a959594458
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m1s
Checks / Prek / Check changed files (pull_request) Successful in 6s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m11s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m28s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 9m20s
to e88d9273d7
All checks were successful
Checks / Changelog / Check changelog is added (pull_request_target) Successful in 6s
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m2s
Checks / Prek / Check changed files (pull_request) Successful in 7s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m21s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m33s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 9m28s
2026-08-08 05:04:14 +00:00
Compare
Jade merged commit 26d5c03a0d into main 2026-08-08 12:23:54 +00:00
Jade deleted branch renovate/rust-non-major 2026-08-08 12:23:54 +00:00
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
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!2070
No description provided.