Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2026

Bumps the rust group with 26 updates:

Package From To
async-channel 2.4.0 2.5.0
atoi_simd 0.16.1 0.17.0
bitflags 2.9.1 2.10.0
bytemuck 1.23.1 1.24.0
bytes 1.10.1 1.11.0
libloading 0.8.8 0.9.0
ndarray 0.16.1 0.17.1
object_store 0.12.2 0.13.0
proptest 1.7.0 1.9.0
rand 0.8.5 0.9.1
raw-cpuid 11.5.0 11.6.0
rayon 1.10.0 1.11.0
regex 1.11.1 1.12.2
reqwest 0.12.22 0.13.1
schemars 0.9.0 1.2.0
slotmap 1.0.7 1.1.1
tokio 1.46.1 1.48.0
uuid 1.17.0 1.19.0
apache-avro 0.17.0 0.19.0
comfy-table 7.1.4 7.2.1
signal-hook 0.3.18 0.4.1
tempfile 3.20.0 3.24.0
lz4_flex 0.11.5 0.12.0
sysinfo 0.33.1 0.37.2
aws-smithy-checksums 0.60.13 0.63.4
thiserror 1.0.69 2.0.12

Updates async-channel from 2.4.0 to 2.5.0

Release notes

Sourced from async-channel's releases.

v2.5.0

  • Add Sender::closed() (#102)
Changelog

Sourced from async-channel's changelog.

Version 2.5.0

  • Add Sender::closed() (#102)
Commits

Updates atoi_simd from 0.16.1 to 0.17.0

Commits

Updates bitflags from 2.9.1 to 2.10.0

Release notes

Sourced from bitflags's releases.

2.10.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.9.4...2.10.0

2.9.4

What's Changed

Full Changelog: bitflags/bitflags@2.9.3...2.9.4

2.9.3

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.9.2...2.9.3

2.9.2

What's Changed

Full Changelog: bitflags/bitflags@2.9.1...2.9.2

Changelog

Sourced from bitflags's changelog.

2.10.0

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.9.4...2.10.0

2.9.4

What's Changed

Full Changelog: bitflags/bitflags@2.9.3...2.9.4

2.9.3

What's Changed

New Contributors

Full Changelog: bitflags/bitflags@2.9.2...2.9.3

2.9.2

What's Changed

Full Changelog: bitflags/bitflags@2.9.1...2.9.2

Commits
  • 7cc8595 Merge pull request #468 from bitflags/cargo/2.10.0
  • ea9b2f7 prepare for 2.10.0 release
  • 7fdc68c Merge pull request #467 from KodrAus/feat/serde_core
  • fdc1d4a depend on serde_core instead of serde
  • 7922585 Merge pull request #466 from KodrAus/chore/iter-named-tests
  • 409666e rename iter_named to iter_defined_names
  • 50fab91 Merge pull request #465 from ssrlive/main
  • f886489 Fix bitflags_custom_bits.stderr & bitflags_trait_custom.stderr
  • 39bd761 rename all_named_flags to iter_named
  • 3e52578 Implement iterator for all named flags
  • Additional commits viewable in compare view

Updates bytemuck from 1.23.1 to 1.24.0

Changelog

Sourced from bytemuck's changelog.

bytemuck changelog

1.24

1.23.2

  • bump derive minimum version.
Commits

Updates bytes from 1.10.1 to 1.11.0

Release notes

Sourced from bytes's releases.

Bytes v1.11.0

1.11.0 (November 14th, 2025)

  • Bump MSRV to 1.57 (#788)

Fixed

  • fix: BytesMut only reuse if src has remaining (#803)
  • Specialize BytesMut::put::<Bytes> (#793)
  • Reserve capacity in BytesMut::put (#794)
  • Change BytesMut::remaining_mut to use isize::MAX instead of usize::MAX (#795)

Internal changes

  • Guarantee address in slice() for empty slices. (#780)
  • Rename Vtable::to_* -> Vtable::into_* (#776)
  • Fix latest clippy warnings (#787)
  • Ignore BytesMut::freeze doctest on wasm (#790)
  • Move drop_fn of from_owner into vtable (#801)
Changelog

Sourced from bytes's changelog.

1.11.0 (November 14th, 2025)

  • Bump MSRV to 1.57 (#788)

Fixed

  • fix: BytesMut only reuse if src has remaining (#803)
  • Specialize BytesMut::put::<Bytes> (#793)
  • Reserve capacity in BytesMut::put (#794)
  • Change BytesMut::remaining_mut to use isize::MAX instead of usize::MAX (#795)

Internal changes

  • Guarantee address in slice() for empty slices. (#780)
  • Rename Vtable::to_* -> Vtable::into_* (#776)
  • Fix latest clippy warnings (#787)
  • Ignore BytesMut::freeze doctest on wasm (#790)
  • Move drop_fn of from_owner into vtable (#801)
Commits

Updates libloading from 0.8.8 to 0.9.0

Commits

Updates ndarray from 0.16.1 to 0.17.1

Changelog

Sourced from ndarray's changelog.

Version 0.17.1 (2025-11-02)

Version 0.17.1 provides a patch to fix the originally-unsound implementation of the new array reference types.

The reference types are now all unsized. Practically speaking, this has one major implication: writing functions and traits that accept RawRef and LayoutRef will now need a + ?Sized bound to work ergonomically with ArrayRef. For example, the release notes for 0.17.0 said

Reading / Writing Shape: LayoutRef<A, D>

LayoutRef lets functions view or modify shape/stride information without touching data. This replaces verbose signatures like:

fn alter_view<S>(a: &mut ArrayBase<S, Ix1>)
where S: Data<Elem = f64>;

Use AsRef / AsMut for best compatibility:

fn alter_shape<T>(a: &mut T)
where T: AsMut<LayoutRef<f64>>;

However, these functions now need an additional bound to allow for callers to pass in &ArrayRef types:

fn alter_shape<T>(a: &mut T)
where T: AsMut<LayoutRef<f64>> + ?Sized; // Added bound here

A huge thank you to Sarah Quiñones (@​sarah-quinones) for catching the original unsound bug and helping to fix it. She does truly excellent work with faer-rs; check it out!

Version 0.17.0 (2025-10-14) [YANKED]

Version 0.17.0 introduces a new array reference type — the preferred way to write functions and extension traits in ndarray.
This release is fully backwards-compatible but represents a major usability improvement.
The first section of this changelog explains the change in detail.

It also includes numerous new methods, math functions, and internal improvements — all credited below.

A New Way to Write Functions

TL;DR

ndarray 0.17.0 adds new reference types for writing functions and traits that work seamlessly with owned arrays and views.

When writing functions that accept array arguments:

  • Use &ArrayRef<A, D> to read elements from any array.
  • Use &mut ArrayRef<A, D> to modify elements.
  • Use &T where T: AsRef<LayoutRef<A, D>> to inspect shape/stride only.
  • Use &mut T where T: AsMut<LayoutRef<A, D>> to modify shape/stride only.

All existing function signatures continue to work; these new types are fully opt-in.

... (truncated)

Commits

Updates object_store from 0.12.2 to 0.13.0

Changelog

Sourced from object_store's changelog.

Historical Changelog

v0.12.4 (2025-09-19)

Full Changelog

Implemented enhancements:

  • Allow flagging PUT operations as idempotent. #464
  • Release object store 0.12.3 (non breaking API) Release July 2025 #428
  • LocalFileSystem: offset for list_with_offset can't be identified / List results *must* be sorted #388
  • Support setting storage class when objects are written #330
  • Support auth using AssumeRoleWithWebIdentity for non-AWS S3-compatible implementations #283
  • Types from http through request leak into object_store public interfaces but aren't re-exported #263

Fixed bugs:

  • Retry does not cover connection errors #368

Documentation updates:

  • Improve documentation for http client timeout #390 (alamb)

Closed issues:

  • When a client http request is retried, I would like more information in the info! about the retry #486
  • Range header causing AWS Signature issues #471
  • Impossible to downcast an Error::Generic into a RetryError #469
  • JWT session tokens cause SignatureDoesNotMatch with Supabase S3 #466
  • Double url-encoding of special characters in key names #457

... (truncated)

Commits

Updates proptest from 1.7.0 to 1.9.0

Commits
  • b2d358b prep 1.9.0 release (#607)
  • 67a1fe4 Merge pull request #606 from proptest-rs/fix-test
  • 7190be9 fix doctest and cleanup warnings
  • c1a49e6 Merge pull request #589 from bschoenmaeckers/assume_ok
  • 411e580 Merge pull request #546 from serprex/remove-lazy-static
  • a54d0a9 Merge branch 'main' into remove-lazy-static
  • 4b78455 Merge pull request #605 from proptest-rs/msrv-1.82
  • 0454e5d bump msrv to 1.82
  • b59a691 Merge remote-tracking branch 'origin/main' into assume_ok
  • 9b121ca Review
  • Additional commits viewable in compare view

Updates rand from 0.8.5 to 0.9.1

Changelog

Sourced from rand's changelog.

[0.9.1] - 2025-04-17

Security and unsafe

  • Revise "not a crypto library" policy again (#1565)
  • Remove zerocopy dependency from rand (#1579)

Fixes

  • Fix feature simd_support for recent nightly rust (#1586)

Changes

  • Allow fn rand::seq::index::sample_weighted and fn IndexedRandom::choose_multiple_weighted to return fewer than amount results (#1623), reverting an undocumented change (#1382) to the previous release.

Additions

  • Add rand::distr::Alphabetic distribution. (#1587)
  • Re-export rand_core (#1604)

[0.9.0] - 2025-01-27

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)
  • Add feature thread_rng (#1547)

API changes: rand_core traits

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

API changes: Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#1506)
  • Remove fn rand::random() from the prelude (#1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#1488)
  • Re-introduce fn Rng::gen_iter as random_iter (#1305, #1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#1505)
  • Annotate panicking methods with #[track_caller] (#1442, #1447)

... (truncated)

Commits
  • ec6d5c0 Prepare rand_core v0.9.1 (#1591)
  • 6a06056 rand_core: introduce an UnwrapMut wrapper (#1589)
  • 8929123 Add Alphabetic distribution (#1587)
  • 06b1642 Remove unnecessary underscore from `impl<T, const N: usize> Distribution<[T; ...
  • 49d76cd rename extract to extract_lane (#1586)
  • e0a70fd Change to use array::from_fn in Distribution\<[T; N]> for StandardUniform ...
  • 0bc3f65 Move rand distr (#1577)
  • 2677c49 Revise "not a crypto library" policy and SECURITY.md (#1565)
  • bfd1826 SeedableRng docs: add note on (lack of) reproducibility (#1572)
  • c01aee7 Fix some links (#1571)
  • Additional commits viewable in compare view

Updates raw-cpuid from 11.5.0 to 11.6.0

Commits
  • aefadf7 release 11.6.0
  • 206a4ef Bump actions/checkout from 4.2.1 to 4.2.2
  • ca61944 Bump codecov/codecov-action from 3 to 5
  • 21c7205 Some comment fixes
  • aa9414a Implemented Leaf 80000020, 21,22,23 and 26
  • 37bffab Leaf 8000_0001h EDX holds FFXSR, but feature is off by a bit
  • d913e2c Add hygon into AMD vendor
  • f043311 #59 Add support for AMD Leaf 8000_001B
  • 92e8cae fix a few mild docs typos
  • See full diff in compare view

Updates rayon from 1.10.0 to 1.11.0

Changelog

Sourced from rayon's changelog.

Release rayon 1.11.0 / rayon-core 1.13.0 (2025-08-12)

  • The minimum supported rustc is now 1.80.
  • iter::repeatn has been renamed to iter::repeat_n to match the name stabilized in the standard library. The old name still exists as a deprecated function for compatibility.
  • Fixed a bug in in_place_scope when the default global registry uses the current thread, like on WebAssembly without threading support.
  • binary_heap::Iter no longer requires a temporary allocation.
  • Relaxed trait bounds on many of the public structs.
  • Implemented IntoParallelIterator for Box<[T]> and its references.
  • Implemented FromParallelIterator<_> for Box<str> via String.
Commits

Updates regex from 1.11.1 to 1.12.2

Changelog

Sourced from regex's changelog.

1.12.2 (2025-10-13)

This release fixes a cargo doc breakage on nightly when --cfg docsrs is enabled. This caused documentation to fail to build on docs.rs.

Bug fixes:

1.12.1 (2025-10-10)

This release makes a bug fix in the new regex::Captures::get_match API introduced in 1.12.0. There was an oversight with the lifetime parameter for the Match returned. This is technically a breaking change, but given that it was caught almost immediately and I've yanked the 1.12.0 release, I think this is fine.

1.12.0 (2025-10-10)

This release contains a smattering of bug fixes, a fix for excessive memory consumption in some cases and a new regex::Captures::get_match API.

Improvements:

Bug fixes:

1.11.3 (2025-09-25)

This is a small patch release with an improvement in memory usage in some cases.

... (truncated)

Commits

Updates reqwest from 0.12.22 to 0.13.1

Release notes

Sourced from reqwest's releases.

v0.13.1

What's Changed

Full Changelog: seanmonstar/reqwest@v0.13.0...v0.13.1

v0.13.0

Breaking changes

  • rustls is now the default TLS backend, instead of native-tls.
  • rustls crypto provider defaults to aws-lc instead of ring. (rustls-no-provider exists if you want a different crypto provider)
  • rustls-tls has been renamed to rustls.
  • rustls roots features removed, rustls-platform-verifier is used by default.
    • To use different roots, call tls_certs_only(your_roots).
  • native-tls now includes ALPN. To disable, use native-tls-no-alpn.
  • query and form are now crate features, disabled by default.
  • Long-deprecated methods and crate features have been removed (such as trust-dns, which was renamed hickory-dns a while ago).
  • Many TLS-related methods renamed to improve autocompletion and discovery, but previous name left in place with a "soft" deprecation. (just documented, no warnings)
    • For example, prefer tls_backend_rustls() over use_rustls_tls().

Pull Requests in General

New Contributors

Full Changelog: seanmonstar/reqwest@v0.12.28...v0.13.0

v0.13.0-rc.1

👀 Discussion here if you give it try, thanks!

Main breaking changes

  • rustls is now default instead of native-tls
  • rustls provider defaults to aws-lc instead of ring (rustls-no-provider exists if you want to enable a different one)
  • rustls-tls renamed to rustls
  • rustls roots features removed, platform-verifier is used instead

... (truncated)

Changelog

Sourced from reqwest's changelog.

v0.13.1

  • Fixes compiling with rustls on Android targets.

v0.13.0

  • Breaking changes:
    • rustls is now the default TLS backend, instead of native-tls.
    • rustls crypto provider defaults to aws-lc instead of ring. (rustls-no-provider exists if you want a different crypto provider)
    • rustls-tls has been renamed to rustls.
    • rustls roots features removed, rustls-platform-verifier is used by default.
      • To use different roots, call tls_certs_only(your_roots).
    • native-tls now includes ALPN. To disable, use native-tls-no-alpn.
    • query and form are now crate features, disabled by default.
    • Long-deprecated methods and crate features have been removed (such as trust-dns, which was renamed hickory-dns a while ago).
  • Many TLS-related methods renamed to improve autocompletion and discovery, but previous name left in place with a "soft" deprecation. (just documented, no warnings)
    • For example, prefer tls_backend_rustls() over use_rustls_tls().

v0.12.28

  • Fix compiling on Windows if TLS and SOCKS features are not enabled.

v0.12.27

  • Add ClientBuilder::windows_named_pipe(name) option that will force all requests over that Windows Named Piper.

v0.12.26

  • Fix sending Accept-Encoding header only with values configured with reqwest, regardless of underlying tower-http config.

v0.12.25

  • Add Error::is_upgrade() to determine if the error was from an HTTP upgrade.
  • Fix sending Proxy-Authorization if only username is configured.
  • Fix sending Proxy-Authorization to HTTPS proxies when the target is HTTP.
  • Refactor internal decompression handling to use tower-http.

v0.12.24

  • Refactor cookie handling to an internal middleware.
  • Refactor internal random generator.
  • Refactor base64 encoding to reduce a copy.
  • Documentation updates.

v0.12.23

  • Add ClientBuilder::unix_socket(path) option that will force all requests over that Unix Domain Socket.
  • Add ClientBuilder::retry(policy) and reqwest::retry::Builder to configure automatic retries.
  • Add ClientBuild...

    Description has been truncated

Bumps the rust group with 26 updates:

| Package | From | To |
| --- | --- | --- |
| [async-channel](https://github.com/smol-rs/async-channel) | `2.4.0` | `2.5.0` |
| [atoi_simd](https://github.com/RoDmitry/atoi_simd) | `0.16.1` | `0.17.0` |
| [bitflags](https://github.com/bitflags/bitflags) | `2.9.1` | `2.10.0` |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.23.1` | `1.24.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.10.1` | `1.11.0` |
| [libloading](https://github.com/nagisa/rust_libloading) | `0.8.8` | `0.9.0` |
| [ndarray](https://github.com/rust-ndarray/ndarray) | `0.16.1` | `0.17.1` |
| [object_store](https://github.com/apache/arrow-rs-object-store) | `0.12.2` | `0.13.0` |
| [proptest](https://github.com/proptest-rs/proptest) | `1.7.0` | `1.9.0` |
| [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.9.1` |
| [raw-cpuid](https://github.com/gz/rust-cpuid) | `11.5.0` | `11.6.0` |
| [rayon](https://github.com/rayon-rs/rayon) | `1.10.0` | `1.11.0` |
| [regex](https://github.com/rust-lang/regex) | `1.11.1` | `1.12.2` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.22` | `0.13.1` |
| [schemars](https://github.com/GREsau/schemars) | `0.9.0` | `1.2.0` |
| [slotmap](https://github.com/orlp/slotmap) | `1.0.7` | `1.1.1` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.46.1` | `1.48.0` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.17.0` | `1.19.0` |
| [apache-avro](https://github.com/apache/avro-rs) | `0.17.0` | `0.19.0` |
| [comfy-table](https://github.com/nukesor/comfy-table) | `7.1.4` | `7.2.1` |
| [signal-hook](https://github.com/vorner/signal-hook) | `0.3.18` | `0.4.1` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.20.0` | `3.24.0` |
| [lz4_flex](https://github.com/pseitz/lz4_flex) | `0.11.5` | `0.12.0` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.33.1` | `0.37.2` |
| [aws-smithy-checksums](https://github.com/smithy-lang/smithy-rs) | `0.60.13` | `0.63.4` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.69` | `2.0.12` |


Updates `async-channel` from 2.4.0 to 2.5.0
- [Release notes](https://github.com/smol-rs/async-channel/releases)
- [Changelog](https://github.com/smol-rs/async-channel/blob/master/CHANGELOG.md)
- [Commits](smol-rs/async-channel@v2.4.0...v2.5.0)

Updates `atoi_simd` from 0.16.1 to 0.17.0
- [Commits](https://github.com/RoDmitry/atoi_simd/commits)

Updates `bitflags` from 2.9.1 to 2.10.0
- [Release notes](https://github.com/bitflags/bitflags/releases)
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md)
- [Commits](bitflags/bitflags@2.9.1...2.10.0)

Updates `bytemuck` from 1.23.1 to 1.24.0
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.23.1...v1.24.0)

Updates `bytes` from 1.10.1 to 1.11.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.10.1...v1.11.0)

Updates `libloading` from 0.8.8 to 0.9.0
- [Commits](nagisa/rust_libloading@0.8.8...0.9.0)

Updates `ndarray` from 0.16.1 to 0.17.1
- [Release notes](https://github.com/rust-ndarray/ndarray/releases)
- [Changelog](https://github.com/rust-ndarray/ndarray/blob/master/RELEASES.md)
- [Commits](rust-ndarray/ndarray@0.16.1...0.17.1)

Updates `object_store` from 0.12.2 to 0.13.0
- [Changelog](https://github.com/apache/arrow-rs-object-store/blob/main/CHANGELOG-old.md)
- [Commits](apache/arrow-rs-object-store@v0.12.2...v0.13.0)

Updates `proptest` from 1.7.0 to 1.9.0
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/main/CHANGELOG.md)
- [Commits](proptest-rs/proptest@v1.7.0...v1.9.0)

Updates `rand` from 0.8.5 to 0.9.1
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.8.5...rand_core-0.9.1)

Updates `raw-cpuid` from 11.5.0 to 11.6.0
- [Changelog](https://github.com/gz/rust-cpuid/blob/master/CHANGELOG.md)
- [Commits](gz/rust-cpuid@11.5.0...11.6.0)

Updates `rayon` from 1.10.0 to 1.11.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.10.0...rayon-core-v1.11.0)

Updates `regex` from 1.11.1 to 1.12.2
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.11.1...1.12.2)

Updates `reqwest` from 0.12.22 to 0.13.1
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.22...v0.13.1)

Updates `schemars` from 0.9.0 to 1.2.0
- [Release notes](https://github.com/GREsau/schemars/releases)
- [Changelog](https://github.com/GREsau/schemars/blob/master/CHANGELOG.md)
- [Commits](GREsau/schemars@v0.9.0...v1.2.0)

Updates `slotmap` from 1.0.7 to 1.1.1
- [Changelog](https://github.com/orlp/slotmap/blob/master/RELEASES.md)
- [Commits](orlp/slotmap@v1.0.7...v1.1.1)

Updates `tokio` from 1.46.1 to 1.48.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.46.1...tokio-1.48.0)

Updates `uuid` from 1.17.0 to 1.19.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@v1.17.0...v1.19.0)

Updates `apache-avro` from 0.17.0 to 0.19.0
- [Release notes](https://github.com/apache/avro-rs/releases)
- [Changelog](https://github.com/apache/avro-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/apache/avro-rs/commits/rel/release-0.19.0)

Updates `comfy-table` from 7.1.4 to 7.2.1
- [Release notes](https://github.com/nukesor/comfy-table/releases)
- [Changelog](https://github.com/Nukesor/comfy-table/blob/main/CHANGELOG.md)
- [Commits](Nukesor/comfy-table@v7.1.4...v7.2.1)

Updates `signal-hook` from 0.3.18 to 0.4.1
- [Changelog](https://github.com/vorner/signal-hook/blob/master/CHANGELOG.md)
- [Commits](vorner/signal-hook@v0.3.18...v0.4.1)

Updates `tempfile` from 3.20.0 to 3.24.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.20.0...v3.24.0)

Updates `lz4_flex` from 0.11.5 to 0.12.0
- [Release notes](https://github.com/pseitz/lz4_flex/releases)
- [Changelog](https://github.com/PSeitz/lz4_flex/blob/main/CHANGELOG.md)
- [Commits](PSeitz/lz4_flex@0.11.5...0.12.0)

Updates `sysinfo` from 0.33.1 to 0.37.2
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/main/CHANGELOG.md)
- [Commits](GuillaumeGomez/sysinfo@v0.33.1...v0.37.2)

Updates `aws-smithy-checksums` from 0.60.13 to 0.63.4
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `thiserror` from 1.0.69 to 2.0.12
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.69...2.0.12)

---
updated-dependencies:
- dependency-name: async-channel
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: atoi_simd
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: bitflags
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: bytemuck
  dependency-version: 1.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: bytes
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: libloading
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: ndarray
  dependency-version: 0.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: object_store
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: proptest
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: rand
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: raw-cpuid
  dependency-version: 11.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: rayon
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: regex
  dependency-version: 1.12.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: reqwest
  dependency-version: 0.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: schemars
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust
- dependency-name: slotmap
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tokio
  dependency-version: 1.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: uuid
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: apache-avro
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: comfy-table
  dependency-version: 7.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: signal-hook
  dependency-version: 0.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: tempfile
  dependency-version: 3.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: lz4_flex
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: sysinfo
  dependency-version: 0.37.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: aws-smithy-checksums
  dependency-version: 0.63.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: thiserror
  dependency-version: 2.0.12
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the skip changelog Do not include in changelog label Jan 1, 2026
@dependabot dependabot bot added the skip changelog Do not include in changelog label Jan 1, 2026
@github-actions github-actions bot added build Changes that affect the build system or external dependencies python Related to Python Polars rust Related to Rust Polars labels Jan 1, 2026
Copilot AI added a commit that referenced this pull request Jan 2, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

build Changes that affect the build system or external dependencies python Related to Python Polars rust Related to Rust Polars skip changelog Do not include in changelog

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant