Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Rust #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Update Rust #4

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Sep 26, 2024

This PR contains the following updates:

Package Type Update Change
email_address dependencies patch 0.2.5 -> 0.2.9
html5ever dependencies minor 0.27.0 -> 0.29.0
indoc dependencies patch 2.0.5 -> 2.0.6
js-sys (source) dependencies patch 0.3.69 -> 0.3.77
once_cell dependencies minor 1.19.0 -> 1.21.0
pulldown-cmark dependencies minor 0.11.0 -> 0.13.0
regex dependencies minor 1.10.5 -> 1.11.1
ruma-common (source) dependencies minor 0.13.0 -> 0.15.0
speculoos dev-dependencies minor 0.11.0 -> 0.12.0
strum dependencies minor 0.26 -> 0.27
strum_macros dependencies minor 0.26 -> 0.27
unicode-segmentation dependencies minor 1.11.0 -> 1.12.0
url dependencies patch 2.5.2 -> 2.5.4
wasm-bindgen (source) dependencies patch 0.2.92 -> 0.2.100
wasm-bindgen-futures (source) dependencies patch 0.4.42 -> 0.4.50
wasm-bindgen-test dev-dependencies patch 0.3.42 -> 0.3.50
web-sys (source) dependencies patch 0.3.69 -> 0.3.77

Release Notes

johnstonskj/rust-email_address (email_address)

v0.2.9: Fix Unicode character selection

Compare Source

This release replaces the internal is_uchar function with is_utf8_non_ascii that implements the correct RFC set of Unicode characters.

This fixes issue #​21

Full Changelog: johnstonskj/rust-email_address@v0.2.8...v0.2.9

v0.2.8: Fix missing Eq implementation

Compare Source

PRs to make PartialEq correct lost the implementation of Eq. This caused downstream packages to break, the implementation has been put back.

Fixes issue #​29

Full Changelog: johnstonskj/rust-email_address@v0.2.7...v0.2.8

v0.2.7: Better Option documentation

Compare Source

Added more documentation in general but specifically to the Option type.

Also added builder functions to the same type.

Full Changelog: johnstonskj/rust-email_address@v0.2.6...v0.2.7

v0.2.6

Compare Source

Fixes and merge clean-up

What's Changed

New Contributors

Full Changelog: johnstonskj/rust-email_address@v0.2.5...v0.2.6

dtolnay/indoc (indoc)

v2.0.6

Compare Source

  • Documentation improvements
matklad/once_cell (once_cell)

v1.21.0

Compare Source

  • Outline initialization in race: #​273.
  • Add OnceNonZereUsize::get_unchecked: #​274.
  • Add OnceBox::clone and OnceBox::with_value: #​275.

v1.20.3

Compare Source

v1.20.2

Compare Source

v1.20.1

Compare Source

  • Allow using race module using just portable_atomic, without critical_section and provide
    better error messages on targets without atomic CAS instruction,
    #​265.

v1.20.0

Compare Source

raphlinus/pulldown-cmark (pulldown-cmark)

v0.13.0

Compare Source

Breaking Changes

New Features

Bug Fixes and Code Enhancements

Docs

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.12.2...v0.13.0

v0.12.2: 0.12.2

Compare Source

What's Changed

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.12.1...v0.12.2

v0.12.1: 0.12.1

Compare Source

Security

New features

Developers

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.12.0...v0.12.1

v0.12.0: 0.12.0

Compare Source

Thanks to all contributors! This release mainly adds the long awaited commonmark-hs description lists (under a flag) and enables the blockquote kind in TagEnd reverted in 0.11.2.

Breaking changes

New features

Other changes

Full Changelog: pulldown-cmark/pulldown-cmark@v0.11.2...v0.12.0

v0.11.3: 0.11.3

Compare Source

Security

Full Changelog: pulldown-cmark/pulldown-cmark@v0.11.2...v0.11.3

v0.11.2

Compare Source

Revert BlockQuote kind to avoid breaking change.

v0.11.1

Compare Source

Thanks to all people involved in this release! The main change of this release is the reduction of the MSRV to 1.71.1, but it also includes a lot of bug fixes and a new mdBook for user-friendly documentation.

Breaking changes

What's Changed

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.11.0...v0.11.1

rust-lang/regex (regex)

v1.11.1

Compare Source

===================
This is a new patch release of regex that fixes compilation on nightly
Rust when the unstable pattern crate feature is enabled. Users on nightly
Rust without this feature enabled are unaffected.

Bug fixes:

  • BUG #​1231:
    Fix the Pattern trait implementation as a result of nightly API breakage.

v1.11.0

Compare Source

===================
This is a new minor release of regex that brings in an update to the
Unicode Character Database. Specifically, this updates the Unicode data
used by regex internally to the version 16 release.

New features:

v1.10.6

Compare Source

===================
This is a new patch release with a fix for the unstable crate feature that
enables std::str::Pattern trait integration.

Bug fixes:

  • BUG #​1219:
    Fix the Pattern trait implementation as a result of nightly API breakage.
ruma/ruma (ruma-common)

v0.15.1: ruma-common 0.15.1

Compare Source

Improvements:

  • Add MatrixVersion::V1_13.

v0.15.0: ruma-common 0.15.0

Compare Source

Breaking changes:

  • #[serde(flatten)] on the only body field of a #[request] or #[response] struct is disallowed. #[ruma_api(body)] must be used instead.

Improvements:

  • The ruma_identifiers_storage compile-time cfg setting can also be configured by setting the RUMA_IDENTIFIERS_STORAGE environment variable at compile time. It has the benefit of not requiring to re-compile all the crates of the dependency chain when the value is changed.
  • The unstable-exhaustive-types cargo feature was replaced by the ruma_unstable_exhaustive_types compile-time cfg setting. Like all cfg settings, it can be enabled at compile-time with the RUSTFLAGS environment variable, or inside .cargo/config.toml. It can also be enabled by setting the RUMA_UNSTABLE_EXHAUSTIVE_TYPES environment variable.
  • HttpPusherData allows to set custom data for the pusher in the data field, due to a clarification in the spec.
    • The default_payload field that was behind the unstable-unspecified was removed. It can be added manually to the custom data.

v0.14.1: ruma-common 0.14.1

Compare Source

Bug fixes:

  • The KeyId::key_name method now returns the key name. In 0.14.0, key_name mistakenly returned the algorithm.

v0.14.0: ruma-common 0.14.0

Compare Source

Bug fixes:

  • The instance_id field was removed from ProtocolInstanceInit and is now an Option<String> for ProtocolInstance. It made the unstable-unspecified feature non-additive.

Breaking changes:

  • Rename the query_map attribute of the request macro to query_all, and remove the required bound to implement IntoIterator<Item = (String, String)>. This allows to use a struct or enum as well as a map to represent the list of query parameters. Note that the (de)serialization of the type used must work with serde_html_form.
  • The header attribute for the request and response macros accepts any type that implements ToString and FromStr.
  • The compat-key-id cargo feature was renamed to compat-server-signing-key-version.
  • (Owned)KeyName was renamed to (Owned)ServerSigningKeyVersion and is now validated according to the set of allowed characters defined in the docs, unless the compat-server-signing-key-version cargo feature is enabled.
  • The bounds on KeyId changed. The algorithm part must implement KeyAlgorithm and the key name part must implement KeyName.
  • The (owned_)server_signing_key_id macros were removed. For compile-time validated construction, use ServerSigningKeyId::from_parts with a SigningKeyAlgorithm and the server_signing_key_version macro.
  • Rename Signatures::insert to Signatures::insert_signature. Signatures::insert is now dereferenced to BTreeMap::insert.
  • Move the DeviceKeyAlgorithm::SignedCurve25519 into the new OneTimeKeyAlgorithm type.
  • Add (Owned)CrossSigningKeyId and use it instead of OwnedDeviceKeyId to identify CrossSigningKey's keys.
  • Add (Owned)CrossSigningOrDeviceSigningKeyId and use it instead of OwnedDeviceKeyId to identify signing keys in DeviceKeys's and CrossSigningKey's signatures.
  • Use OwnedDeviceSigningKeyId instead of OwnedDeviceKeyId to identify signing keys in SignedKey's signatures.
  • (Owned)DeviceKeyId is now a type alias of (Owned)KeyId.
    • Remove the (owned_)device_key_id macro, instead use DeviceKeyId::from_parts.
  • Use CrossSigningOrDeviceSignatures for the signatures of DeviceKeys.
  • Remove SignedKeySignatures and replace it with DeviceSignatures.
  • Remove CrossSigningKeySignatures and replace it with CrossSigningOrDeviceSignatures.

Improvements:

  • Add the InvalidHeaderValue variant to the DeserializationError struct, for cases where we receive a HTTP header with an unexpected value.
  • Implement Eq/Hash/PartialEq for ThirdPartyIdentifier, to check whether a ThirdPartyIdentifier has already been added by another user.
  • Add MatrixVersion::V1_11 and MatrixVersion::V1_12.
  • Clarify in the docs of AuthScheme that sending an access token via a query parameter is deprecated, according to MSC4126 / Matrix 1.11.
  • Constructing a Matrix URI for an event with a room alias is deprecated, according to MSC4132 / Matrix 1.11
  • Implement Eq and PartialEq for Metadata
  • Allow constructing api::error::MatrixErrorBody::NotJson outside of this crate.
  • Improve the API of Signatures, by implementing Deref and DerefMut, as well as From, Extend and FromIterator from a list of (entity, key_identifier, value) tuples.
  • Add (Owned)OneTimeKeyId and (Owned)OneTimeKeyName to identify one-time and fallback keys instead of using (Owned)DeviceKeyId.
  • Add (Owned)Base64PublicKey and (Owned)Base64PublicKeyOrDeviceId to identify cross-signing keys.
    • Add (owned_)base_64_public_key to construct a compile-time validated (Owned)Base64PublicKey.
oknozor/speculoos (speculoos)

v0.12.0

Compare Source

What's Changed

New Contributors

Full Changelog: oknozor/speculoos@0.11.0...0.12.0

Peternator7/strum (strum)

v0.27.1

Compare Source

  • #​414: Fix docrs build error.

  • #​417: Mention parse_error_ty and parse_error_fn that had been
    left out of the docs accidentally.

  • #​421#​331: Implement
    #[strum(transparent)] attribute on IntoStaticStr, Display and AsRefStr that forwards the implmenentation to
    the inner value. Note that for static strings, the inner value must be convertible to an &'static str.

    #[derive(strum::Display)]
    enum SurveyResponse {
      Yes,
      No,
      #[strum(transparent)]
      Other(String)
    }
    
    fn main() {
      let response = SurveyResponse::Other("It was good".into());
      println!("Question: Did you have fun?");
      println!("Answer: {}", response);
      // prints: Answer: It was good
    }

v0.27.0

Compare Source

Highlights
  • #​407: Display is now correctly derived in [no_std] projects.
  • #​402: EnumIter now implements Send + Sync
  • #​400: EnumTryAs now handles attributes on variant fields correctly.
  • #​398: strum is now on rust 2021
  • #​391: EnumProperties correctly implements get_bool and get_int
    finally. 🎉
  • #​380: FromString now supports 2 additional attributes, parse_error_ty
    and parse_error_fn that can be added to use a custom error type rather than the default strum error message.
    • #​410: These attributes accept a Path rather than a String
      to improve behavior with rust-analyzer.
Breaking Changes
  • #​384: MSRV is now 1.66.1
  • #​391: EnumProperties doesn't provide default implementations anymore.
    This would have required you to manually implement this trait which should be very uncommon.
unicode-rs/unicode-segmentation (unicode-segmentation)

v1.12.0

Compare Source

servo/rust-url (url)

v2.5.4

Compare Source

What's Changed

Full Changelog: servo/rust-url@v2.5.3...v2.5.4

v2.5.3

Compare Source

What's Changed

New Contributors

Full Changelog: servo/rust-url@v2.5.2...v2.5.3

rustwasm/wasm-bindgen (wasm-bindgen)

v0.2.100

Compare Source

Released 2025-01-12

Added
  • Add attributes to overwrite return (``unchecked_return_type) and parameter types (unchecked_param_type), descriptions (return_descriptionandparam_description) as well as parameter names (js_name`) for exported functions and methods. See the guide for more details.
    #​4394

  • Add a copy_to_uninit() method to all TypedArrays. It takes &mut [MaybeUninit<T>] and returns &mut [T].
    #​4340

  • Add test coverage support for Node.js.
    #​4348

  • Support importing memory and using wasm_bindgen::module() in Node.js.
    #​4349

  • Add --list, --ignored, --exact and --nocapture to wasm-bindgen-test-runner, analogous to cargo test.
    #​4356

  • Add bindings to Date.to_locale_time_string_with_options.
    #​4384

  • #[wasm_bindgen] now correctly applies #[cfg(...)]s in structs.
    #​4351

Changed
  • Optional parameters are now typed as T | undefined | null to reflect the actual JS behavior.
    #​4188

  • Adding getter, setter, and constructor methods to enums now results in a compiler error. This was previously erroneously allowed and resulted in invalid JS code gen.
    #​4278

  • Handle stuck and failed WebDriver processes when re-trying to start them.
    #​4340

  • Align test output closer to native cargo test.
    #​4358

  • Error if URL in <WEBDRIVER>_REMOTE can't be parsed instead of just ignoring it.
    #​4362

  • Remove WASM_BINDGEN_THREADS_MAX_MEMORY and WASM_BINDGEN_THREADS_STACK_SIZE. The maximum memory size can be set via -Clink-arg=--max-memory=<size>. The stack size of a thread can be set when initializing the thread via the default function.
    #​4363

  • console.*() calls in tests are now always intercepted by default. To show them use --nocapture. When shown they are always printed in-place instead of after test results, analogous to cargo test.
    #​4356

Fixed
  • Fixed using JavaScript keyword as identifiers not being handled correctly.
    #​4329

    • Using JS keywords as struct and enum names will now error at compile time, instead of causing invalid JS code gen.
    • Using JS keywords that are not valid to call or access properties on will now error at compile time, instead of causing invalid JS code gen if used as:
      1. The first part of a js_namespace on imports.
      2. The name of an imported type or constant if the type or constant does not have a js_namespace or module attribute.
      3. The name of an imported function if the function is not a method and does not have a js_namespace or module attribute.
    • Using JS keywords on imports in places other than the above will no longer cause the keywords to be escaped as _{keyword}.
  • Fixed passing large arrays into Rust failing because of internal memory allocations invalidating the memory buffer.
    #​4353

  • Pass along an ignore attribute to unsupported tests.
    #​4360

  • Use OS provided temporary directory for tests instead of Cargo's target directory.
    #​4361

  • Error if URL in <WEBDRIVER>_REMOTE can't be parsed.
    #​4362

  • Internal functions are now removed instead of invalidly imported if they are unused.
    #​4366

  • Fixed no_std support for all APIs in web-sys.
    #​4378

  • Prevent generating duplicate exports for closure conversions.
    #​4380


v0.2.99

Compare Source

Released 2024-12-07

Fixed
  • Mark wasm-bindgen v0.2.98 only compatible with wasm-bindgen-cli of the same version.
    #​4331

v0.2.98

Compare Source

Released 2024-12-07

Added
  • Add support for compiling with atomics for Node.js.
    #​4318

  • Add WASM_BINDGEN_TEST_DRIVER_TIMEOUT environment variable to control the timeout to start and connect to the test driver.
    #​4320

  • Add support for number slices of type MaybeUninit<T>.
    #​4316

Changed
  • Remove once_cell/critical-section requirement for no_std with atomics.
    #​4322

  • static FOO: Option<T> now returns None if undeclared in JS instead of throwing an error in JS.
    #​4319

Fixed
  • Fix macro-hygiene for calls to std::thread_local!.
    #​4315

  • Fix feature resolver version 1 compatibility.
    #​4327


v0.2.97

Compare Source

Released 2024-11-30

Fixed
  • Fixed js-sys and wasm-bindgen-futures relying on internal paths of wasm-bindgen that are not crate feature additive.
    #​4305

v0.2.96

Compare Source

Released 2024-11-29

Added
  • Added support for the HTMLOrSVGElement mixin, which is used for all interfaces deriving from Element.
    #​4143

  • Added bindings for MathMLElement.
    #​4143

  • Added JSDoc type annotations to C-style enums.
    #​4192

  • Added support for C-style enums with negative discriminants.
    #​4204

  • Added bindings for MediaStreamTrack.getCapabilities.
    #​4236

  • Added WASM ABI support for u128 and i128
    #​4222

  • Added support for the wasm32v1-none target.
    #​4277

  • Added support for no_std to js-sys, web-sys, wasm-bindgen-futures and wasm-bindgen-test.
    #​4277

  • Added support for no_std to link_to!, static_string (via thread_local_v2) and throw.
    #​4277

  • Added environment variables to configure tests: WASM_BINDGEN_USE_BROWSER, WASM_BINDGEN_USE_DEDICATED_WORKER, WASM_BINDGEN_USE_SHARED_WORKER WASM_BINDGEN_USE_SERVICE_WORKER, WASM_BINDGEN_USE_DENO and WASM_BINDGEN_USE_NODE_EXPERIMENTAL. The use of wasm_bindgen_test_configure! will overwrite any environment variable.
    #​4295

Changed
  • String enums now generate private TypeScript types but only if used.
    #​4174

  • Remove unnecessary JSDoc type annotations from generated .d.ts files
    #​4187

  • Deprecate autofocus, tabIndex, focus() and blur() bindings in favor of bindings on the inherited Element class.
    #​4143

  • Optimized ABI performance for Option<{i32,u32,isize,usize,f32,*const T,*mut T}>.
    #​4183

  • Deprecate --reference-types in favor of automatic target feature detection.
    #​4237

  • wasm-bindgen-test-runner now tries to restart the WebDriver on failure, instead of spending its timeout period trying to connect to a non-existing WebDriver.
    #​4267

  • Deprecated #[wasm_bindgen(thread_local)] in favor of #[wasm_bindgen(thread_local_v2)], which creates a wasm_bindgen::JsThreadLocal. It is similar to std::thread::LocalKey but supports no_std.
    #​4277

  • Updated the WebGPU API to the current draft as of 2024-11-22.
    #​4290

  • Improved error messages for self arguments in invalid positions.
    #​4276

Fixed
  • Fixed methods with self: &Self consuming the object.
    #​4178

  • Fixed unused string enums generating JS values.
    #​4193

  • Fixed triggering lints in testing facilities.
    #​4195

  • Fixed #[should_panic] not working with #[wasm_bindgen_test(unsupported = ...)].
    #​4196

  • Fixed potential null error when using JsValue::as_debug_string().
    #​4192

  • Fixed generated types when the getter and setter of a property have different types.
    #​4202

  • Fixed generated types when a static getter/setter has the same name as an instance getter/setter.
    #​4202

  • Fixed invalid TypeScript return types for multivalue signatures.
    #​4210

  • Only emit table.fill instructions if the bulk-memory proposal is enabled.
    [#&


Configuration

📅 Schedule: 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 was generated by Mend Renovate. View the repository job log.

@codecov-commenter
Copy link

codecov-commenter commented Sep 26, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 83.09%. Comparing base (0273fa7) to head (3fd6e33).

❗ There is a different number of reports uploaded between BASE (0273fa7) and HEAD (3fd6e33). Click for more details.

HEAD has 6 uploads less than BASE
Flag BASE (0273fa7) HEAD (3fd6e33)
unittests 3 1
unittests-rust 1 0
unittests-ios 1 0
uitests 1 0
uitests-ios 1 0
Additional details and impacted files
@@            Coverage Diff             @@
##             main       #4      +/-   ##
==========================================
- Coverage   89.72%   83.09%   -6.63%     
==========================================
  Files         170       18     -152     
  Lines       20807     1544   -19263     
  Branches      291      291              
==========================================
- Hits        18669     1283   -17386     
+ Misses       2135      258    -1877     
  Partials        3        3              
Flag Coverage Δ
uitests ?
uitests-ios ?
unittests 83.09% <ø> (-5.42%) ⬇️
unittests-ios ?
unittests-react 83.09% <ø> (ø)
unittests-rust ?

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@renovate renovate bot added the Rust label Sep 27, 2024
@renovate renovate bot force-pushed the renovate/rust branch 3 times, most recently from 6de4ffb to 310c7a7 Compare October 5, 2024 16:57
@renovate renovate bot force-pushed the renovate/rust branch 2 times, most recently from e135716 to 9329181 Compare October 11, 2024 01:55
@renovate renovate bot force-pushed the renovate/rust branch 2 times, most recently from 8b20ef2 to d93c86a Compare October 27, 2024 09:57
Copy link
Author

renovate bot commented Nov 4, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path crates/wysiwyg/Cargo.toml --package url@2.5.2 --precise 2.5.4
    Updating crates.io index
error: failed to select a version for `smallvec`.
    ... required by package `idna v1.0.3`
    ... which satisfies dependency `idna = "^1.0.3"` of package `url v2.5.4`
    ... which satisfies dependency `url = "^2.3.1"` of package `wysiwyg v2.38.2 (/tmp/renovate/repos/github/element-hq/matrix-rich-text-editor/crates/wysiwyg)`
    ... which satisfies path dependency `wysiwyg` (locked to 2.38.2) of package `uniffi-wysiwyg-composer v2.38.2 (/tmp/renovate/repos/github/element-hq/matrix-rich-text-editor/bindings/wysiwyg-ffi)`
versions that meet the requirements `^1.13.1` are: 1.14.0, 1.13.2, 1.13.1

all possible versions conflict with previously selected packages.

  previously selected package `smallvec v1.10.0`
    ... which satisfies dependency `smallvec = "^1.6.1"` (locked to 1.10.0) of package `parking_lot_core v0.9.4`
    ... which satisfies dependency `parking_lot_core = "^0.9.0"` (locked to 0.9.4) of package `parking_lot v0.12.1`
    ... which satisfies dependency `parking_lot = "^0.12"` (locked to 0.12.1) of package `string_cache v0.8.4`
    ... which satisfies dependency `string_cache = "^0.8"` (locked to 0.8.4) of package `markup5ever v0.14.1`
    ... which satisfies dependency `markup5ever = "^0.14"` (locked to 0.14.1) of package `html5ever v0.29.1`
    ... which satisfies dependency `html5ever = "^0.29.0"` (locked to 0.29.1) of package `wysiwyg v2.38.2 (/tmp/renovate/repos/github/element-hq/matrix-rich-text-editor/crates/wysiwyg)`
    ... which satisfies path dependency `wysiwyg` (locked to 2.38.2) of package `uniffi-wysiwyg-composer v2.38.2 (/tmp/renovate/repos/github/element-hq/matrix-rich-text-editor/bindings/wysiwyg-ffi)`

failed to select a version for `smallvec` which could resolve this conflict

@renovate renovate bot force-pushed the renovate/rust branch 2 times, most recently from 8db0a09 to 2d9f027 Compare November 22, 2024 20:48
@renovate renovate bot force-pushed the renovate/rust branch 2 times, most recently from 938913f to 0fc1ae4 Compare November 30, 2024 09:28
@renovate renovate bot force-pushed the renovate/rust branch 2 times, most recently from 69bec34 to 0851ce3 Compare December 7, 2024 04:24
@renovate renovate bot force-pushed the renovate/rust branch 3 times, most recently from c83b77d to 2be25be Compare December 17, 2024 21:23
@renovate renovate bot force-pushed the renovate/rust branch 4 times, most recently from c53c17c to 9ad16d2 Compare February 9, 2025 09:31
@renovate renovate bot force-pushed the renovate/rust branch 2 times, most recently from 016ef34 to bafc357 Compare February 17, 2025 01:45
@renovate renovate bot force-pushed the renovate/rust branch 2 times, most recently from 0b4ed86 to b2d45e8 Compare March 4, 2025 03:15
@renovate renovate bot force-pushed the renovate/rust branch from b2d45e8 to 6083fe7 Compare March 10, 2025 18:27
@renovate renovate bot force-pushed the renovate/rust branch from 6083fe7 to 3fd6e33 Compare March 12, 2025 11:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant