Skip to content

Comments

Bump the rust-minor group with 14 updates#651

Merged
torokati44 merged 1 commit intomainfrom
dependabot/cargo/rust-minor-47772ec71e
Jan 26, 2026
Merged

Bump the rust-minor group with 14 updates#651
torokati44 merged 1 commit intomainfrom
dependabot/cargo/rust-minor-47772ec71e

Conversation

@dependabot
Copy link
Contributor

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

Bumps the rust-minor group with 14 updates:

Package From To
cc 1.2.53 1.2.54
euclid 0.22.11 0.22.13
libm 0.2.15 0.2.16
openssl-probe 0.2.0 0.2.1
proc-macro2 1.0.105 1.0.106
quote 1.0.43 1.0.44
socket2 0.6.1 0.6.2
time 0.3.45 0.3.46
time-core 0.1.7 0.1.8
time-macros 0.2.25 0.2.26
zerocopy 0.8.33 0.8.34
zerocopy-derive 0.8.33 0.8.34
zip 7.1.0 7.2.0
zmij 1.0.15 1.0.17

Updates cc from 1.2.53 to 1.2.54

Release notes

Sourced from cc's releases.

cc-v1.2.54

Other

  • Fix x86_64-unknown-linux-gnuasan parsing (#1661)
  • Regenerate target info (#1660)
Changelog

Sourced from cc's changelog.

1.2.54 - 2026-01-23

Other

  • Fix x86_64-unknown-linux-gnuasan parsing (#1661)
  • Regenerate target info (#1660)
Commits

Updates euclid from 0.22.11 to 0.22.13

Commits

Updates libm from 0.2.15 to 0.2.16

Release notes

Sourced from libm's releases.

libm-v0.2.16

Fixed

  • Fix an incorrect result for fminimum and fmaximum with the input (-0, NaN)
  • Fix a typo in libm::Libm::roundeven
  • Fix the expm1f overflow threshold
  • Change CmpResult to use a pointer-sized return type
  • Compare against CARGO_CFG_TARGET_FAMILY in a multi-valued fashion
  • Implement exp and its variants for i586 with inline assembly
  • Implement floor and ceil in assembly on i586

Other

  • Significantly optimize fmod worst case performance (#1002)
Commits
  • dfd2203 chore: release libm v0.2.16
  • 0f5c341 Set codegen-units=1 for benchmarks
  • 723335f Implement __sync builtins for thumbv6-none-eabi (#1050)
  • 65624df compiler-builtins: Enable AArch64 __chkstk for MinGW
  • a33e08e ci: Move the dependency installs and wall time benchmarks to scripts
  • 4ce6a08 Fix a typo in libm::Libm::roundeven
  • 2d56e4d Ignore unused_unsafe lint in libm/src/math/arch/x86/detect.rs
  • 93d8cb5 compiler-builtins: Revert "cpuid is safe since the stdarch sync, so remove un...
  • 66ffdef Merge ref '23d01cd24125' from rust-lang/rust
  • be448ff Prepare for merging from rust-lang/rust
  • Additional commits viewable in compare view

Updates openssl-probe from 0.2.0 to 0.2.1

Release notes

Sourced from openssl-probe's releases.

0.2.1

  • Support for OpenHarmony.
  • Corrections to crate metadata.

What's Changed

Commits
  • 9181752 Prepare 0.2.1
  • 2a23322 docs: clarify lib description, update README
  • 5e18d53 feat: add openharmony platform preset certs folder
  • df769f4 Update repo URL in Cargo metadata
  • cc52ac7 ci: check cargo-deny (and fix up SPDX metadata)
  • 4cfa095 ci: check semver compatibility
  • 04e7058 ci: check clippy
  • fbce324 ci: check code formatting
  • 11fba1b ci: setup duplicate workflow cancellation
  • a44b6f1 ci: restrict workflow permissions
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.105 to 1.0.106

Release notes

Sourced from proc-macro2's releases.

1.0.106

  • Optimize Span::byte_range (#530)
Commits

Updates quote from 1.0.43 to 1.0.44

Release notes

Sourced from quote's releases.

1.0.44

  • Support raw lifetime syntax 'r#async (#323)
Commits

Updates socket2 from 0.6.1 to 0.6.2

Changelog

Sourced from socket2's changelog.

0.6.2

  • MsgHdr and MsgHdrMut are marked as transparent meaning both have the same layout as msghdr on Unix and WSAMSG on Windows (rust-lang/socket2#635).
  • Don't set SO_NOSIGPIPE when accepting sockets, this is inherited from the parent socket (rust-lang/socket2#632).
  • Fixes Socket::tcp_notsent_lowat by using the correct argument type (rust-lang/socket2#622).
Commits
  • 9a30f4f Release v0.6.2
  • 3403a44 make MsgHdr and MsgHdrMut repr(transparent) to allow legally obtaining ...
  • feac83a Don't set SO_NOSIGPIPE when accepting sockets (#632)
  • 3fe6576 Test MSRV on Windows in CI
  • a18be6a Re-enable CI check for armv7-sony-vita-newlibeabihf
  • 853f9a7 Fix some typos in comments
  • 299c2e5 Fixed cfg in original_dst_v6 test (#626)
  • 9463a02 Enable CI for aarch64-apple-visionos
  • 4af7d3d fix getsockopt generic argument in notsent_lowat
  • a0810cd Update FreeBSD CI environment
  • See full diff in compare view

Updates time from 0.3.45 to 0.3.46

Release notes

Sourced from time's releases.

v0.3.46

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.46 [2026-01-23]

Added

  • All possible panics are now documented for the relevant methods.

  • The need to use #[serde(default)] when using custom serde formats is documented. This applies only when deserializing an Option<T>.

  • Duration::nanoseconds_i128 has been made public, mirroring std::time::Duration::from_nanos_u128.

  • Various methods for truncating components have been added, avoiding the need to call the fallible replace methods multiple times.

    For PrimitiveDateTime, UtcDateTime, and OffsetDateTime:

    • truncate_to_day

    For Time, PrimitiveDateTime, UtcDateTime, and OffsetDateTime:

    • truncate_to_hour
    • truncate_to_minute
    • truncate_to_second
    • truncate_to_millisecond
    • truncate_to_microsecond

Changed

  • The minimum supported Rust version is now 1.88.0.
  • Significant performance gains in numerous locations. No public APIs were changed or removed as part of this.
  • The size of error::ComponentRange, along with types that contain it, has been significantly reduced.

Fixed

  • The PartialOrd and Ord implementations of UtcOffset now return the expected result.
Commits
  • 14da652 v0.3.46 release
  • f0798a4 Always use where clauses over inline bounds
  • a74c055 More accurately represent lifetimes in parser
  • d5d339c Address lints from latest rustc
  • 3a60ceb Fix ordering of UtcOffset
  • 7d05f5e Document need to use #[serde(default)]
  • 37c44a4 Remove panic optimization
  • b8b879a Add methods for truncation
  • c75687b Reduce amount of macro-generated code
  • 7ad7a2d Simplify ComponentRange error type
  • Additional commits viewable in compare view

Updates time-core from 0.1.7 to 0.1.8

Commits

Updates time-macros from 0.2.25 to 0.2.26

Changelog

Sourced from time-macros's changelog.

0.2.26 [2021-03-16]

Fixed

  • #316, where the build script was wrongly unable to determine the correct compiler version
  • Dependencies have been bumped to the latest patch version, ensuring compatibility.
Commits

Updates zerocopy from 0.8.33 to 0.8.34

Release notes

Sourced from zerocopy's releases.

v0.8.34

What's Changed

New Contributors

Full Changelog: google/zerocopy@v0.8.33...v0.8.34

Commits

Updates zerocopy-derive from 0.8.33 to 0.8.34

Release notes

Sourced from zerocopy-derive's releases.

v0.8.34

What's Changed

New Contributors

Full Changelog: google/zerocopy@v0.8.33...v0.8.34

Commits

Updates zip from 7.1.0 to 7.2.0

Release notes

Sourced from zip's releases.

v7.2.0

🚀 Features

  • add read_zipfile_from_stream_with_compressed_size (#70)
  • Allow choosing bzip2 rust backend (#329)

🐛 Bug Fixes

  • Need to include zip64 extra field in central directory (fix #353) (#360)
  • Fails to extract file which might or might not be malformed (#376) (#426)
  • (aes) Allow AES encryption while streaming (#463)
  • Default "platform" field in zip files should be set to the local platform, rather than always "Unix" (#470) (#471)

🚜 Refactor

  • Define cfg_if! and cfg_if_expr! internal macros (#438)

⚡ Performance

  • Change an assert to debug_assert when encrypting/decrypting AES, and eliminate a fallible operation (#521)
  • eliminate a String clone per new file added to archive, and other related refactors (#522)

⚙️ Miscellaneous Tasks

  • Fix another merge error, this one affecting only builds with flate2 and not zopfli
  • Fix more merge issues
  • Fix merge
  • Fix write_dir build errors on specific feature configs
  • Fix clippy warning
  • Fix --all-features build error
  • Fix merge
Changelog

Sourced from zip's changelog.

7.2.0 - 2026-01-20

🚀 Features

  • add read_zipfile_from_stream_with_compressed_size (#70)
  • Allow choosing bzip2 rust backend (#329)

🐛 Bug Fixes

  • Need to include zip64 extra field in central directory (fix #353) (#360)
  • Fails to extract file which might or might not be malformed (#376) (#426)
  • (aes) Allow AES encryption while streaming (#463)
  • Default "platform" field in zip files should be set to the local platform, rather than always "Unix" (#470) (#471)

🚜 Refactor

  • Define cfg_if! and cfg_if_expr! internal macros (#438)

⚡ Performance

  • Change an assert to debug_assert when encrypting/decrypting AES, and eliminate a fallible operation (#521)
  • eliminate a String clone per new file added to archive, and other related refactors (#522)
Commits
  • 46dc29c chore: release v7.2.0 (#526)
  • 8a586c6 test: Move a test that was in wrong folder and was using main() instead of `#...
  • cfbb476 docs(examples): Fix remaining log-injection alerts, and simplify writeln to e...
  • d905296 ci: Disable trigger on non-master push (#538)
  • a3a8696 chore(deps): Increase zstd minimum version to 0.13.3 (#539)
  • abd8bc8 ci: Add wasm tests and restore conditional wasm-bindgen dependency (#525)
  • c10c339 doc(examples): add delete/update examples (#56)
  • 9c1a9c7 docs(examples): Fix code scanning alert no. 228: Uncontrolled data used in pa...
  • a12eaaf ci: Combine rename invocations (#533)
  • e86d376 fix: Need to include zip64 extra field in central directory (fix #353) (#360)
  • Additional commits viewable in compare view

Updates zmij from 1.0.15 to 1.0.17

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the rust-minor group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.53` | `1.2.54` |
| [euclid](https://github.com/servo/euclid) | `0.22.11` | `0.22.13` |
| [libm](https://github.com/rust-lang/compiler-builtins) | `0.2.15` | `0.2.16` |
| [openssl-probe](https://github.com/rustls/openssl-probe) | `0.2.0` | `0.2.1` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.105` | `1.0.106` |
| [quote](https://github.com/dtolnay/quote) | `1.0.43` | `1.0.44` |
| [socket2](https://github.com/rust-lang/socket2) | `0.6.1` | `0.6.2` |
| [time](https://github.com/time-rs/time) | `0.3.45` | `0.3.46` |
| [time-core](https://github.com/time-rs/time) | `0.1.7` | `0.1.8` |
| [time-macros](https://github.com/time-rs/time) | `0.2.25` | `0.2.26` |
| [zerocopy](https://github.com/google/zerocopy) | `0.8.33` | `0.8.34` |
| [zerocopy-derive](https://github.com/google/zerocopy) | `0.8.33` | `0.8.34` |
| [zip](https://github.com/zip-rs/zip2) | `7.1.0` | `7.2.0` |
| [zmij](https://github.com/dtolnay/zmij) | `1.0.15` | `1.0.17` |


Updates `cc` from 1.2.53 to 1.2.54
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.53...cc-v1.2.54)

Updates `euclid` from 0.22.11 to 0.22.13
- [Release notes](https://github.com/servo/euclid/releases)
- [Commits](https://github.com/servo/euclid/commits)

Updates `libm` from 0.2.15 to 0.2.16
- [Release notes](https://github.com/rust-lang/compiler-builtins/releases)
- [Commits](rust-lang/compiler-builtins@libm-v0.2.15...libm-v0.2.16)

Updates `openssl-probe` from 0.2.0 to 0.2.1
- [Release notes](https://github.com/rustls/openssl-probe/releases)
- [Commits](rustls/openssl-probe@0.2.0...0.2.1)

Updates `proc-macro2` from 1.0.105 to 1.0.106
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.105...1.0.106)

Updates `quote` from 1.0.43 to 1.0.44
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.43...1.0.44)

Updates `socket2` from 0.6.1 to 0.6.2
- [Release notes](https://github.com/rust-lang/socket2/releases)
- [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md)
- [Commits](rust-lang/socket2@v0.6.1...v0.6.2)

Updates `time` from 0.3.45 to 0.3.46
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.45...v0.3.46)

Updates `time-core` from 0.1.7 to 0.1.8
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](https://github.com/time-rs/time/commits)

Updates `time-macros` from 0.2.25 to 0.2.26
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.2.25...v0.2.26)

Updates `zerocopy` from 0.8.33 to 0.8.34
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.33...v0.8.34)

Updates `zerocopy-derive` from 0.8.33 to 0.8.34
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.33...v0.8.34)

Updates `zip` from 7.1.0 to 7.2.0
- [Release notes](https://github.com/zip-rs/zip2/releases)
- [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md)
- [Commits](zip-rs/zip2@v7.1.0...v7.2.0)

Updates `zmij` from 1.0.15 to 1.0.17
- [Release notes](https://github.com/dtolnay/zmij/releases)
- [Commits](dtolnay/zmij@1.0.15...1.0.17)

---
updated-dependencies:
- dependency-name: cc
  dependency-version: 1.2.54
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: euclid
  dependency-version: 0.22.13
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: libm
  dependency-version: 0.2.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: openssl-probe
  dependency-version: 0.2.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: proc-macro2
  dependency-version: 1.0.106
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: quote
  dependency-version: 1.0.44
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: socket2
  dependency-version: 0.6.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: time
  dependency-version: 0.3.46
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: time-core
  dependency-version: 0.1.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: time-macros
  dependency-version: 0.2.26
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: zerocopy
  dependency-version: 0.8.34
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: zerocopy-derive
  dependency-version: 0.8.34
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
- dependency-name: zip
  dependency-version: 7.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-minor
- dependency-name: zmij
  dependency-version: 1.0.17
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jan 26, 2026
"socket2",
"tracing",
"windows-sys 0.60.2",
"windows-sys 0.52.0",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

argh

@torokati44 torokati44 merged commit 5eba4d6 into main Jan 26, 2026
10 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/rust-minor-47772ec71e branch January 26, 2026 13:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update Rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant