Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 7, 2025

Bumps the pointercrate group with 12 updates:

Package From To
log 0.4.27 0.4.28
rocket 4a410b7 504efef
bitflags 2.9.3 2.9.4
cc 1.2.34 1.2.36
raw-cpuid 11.5.0 11.6.0
rocket_codegen 4a410b7 504efef
rocket_http 4a410b7 504efef
time 0.3.41 0.3.43
time-core 0.1.4 0.1.6
time-macros 0.2.22 0.2.24
zerocopy 0.8.26 0.8.27
zerocopy-derive 0.8.26 0.8.27

Updates log from 0.4.27 to 0.4.28

Release notes

Sourced from log's releases.

0.4.28

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.27...0.4.28

Changelog

Sourced from log's changelog.

[0.4.28] - 2025-09-02

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.27...0.4.28

Notable Changes

Commits
  • 6e17355 Merge pull request #695 from rust-lang/cargo/0.4.28
  • 57719db focus on user-facing source changes in the changelog
  • e0630c6 prepare for 0.4.28 release
  • 60829b1 Merge pull request #692 from nebkor/up-and-down
  • 95d44f8 change names of log-level-changing methods to be more descriptive
  • 2b63dfa Add up() and down() methods for Level and LevelFilter
  • 3aa1359 Merge pull request #690 from HaoliangXu/master
  • 1091f2c Chore:delete compare_exchange method for AtomicUsize on platforms
  • 24c5f44 Merge pull request #688 from ZylosLumen/patch-1
  • 4498495 Unhide #[derive(Debug)] in example
  • Additional commits viewable in compare view

Updates rocket from 4a410b7 to 504efef

Commits

Updates bitflags from 2.9.3 to 2.9.4

Release notes

Sourced from bitflags's releases.

2.9.4

What's Changed

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

Changelog

Sourced from bitflags's changelog.

2.9.4

What's Changed

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

Commits

Updates cc from 1.2.34 to 1.2.36

Changelog

Sourced from cc's changelog.

1.2.36 - 2025-09-05

Other

  • Regenerate windows sys bindings (#1548)
  • Update windows-bindgen requirement from 0.62 to 0.63 (#1547)
  • Add fn get_ucrt_dir for find-msvc-tools (#1546)
  • Regenerate target info (#1544)
  • fix publish.yml (#1543)
  • Replace periods with underscores as well when parsing env variables (#1541)

1.2.35 - 2025-09-01

Fixed

  • fix building for aarch64-apple-visionos-sim on nightly (#1534)
  • fix tests apple_sdkroot_wrong (#1530)

Other

  • Regenerate target info (#1536)
  • Optimize Tool::to_command (#1535)
  • Extract find-msvc-tools (#1531)
  • Add prefer_clang_cl_over_msvc (#1516)
Commits

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 rocket_codegen from 4a410b7 to 504efef

Changelog

Sourced from rocket_codegen's changelog.

Version 0.5.1 (May 22, 2024)

This release contains the following crate updates:

  • rocket 0.5.1
  • rocket_db_pools 0.2.0
  • rocket_dyn_templates 0.2.0
  • rocket_ws 0.1.1

rocket 0.5.1

  • The following char and std::ops::Range types now implement FromForm:

    • char
    • Range<T: FromForm> with start and end fields
    • RangeFrom<T: FromForm> with start field
    • RangeTo<T: FromForm> with end field
    • RangeToInclusive<T: FromForm> with end field
  • [T; N], Vec<T>, and [u8] can now be passed to uri!.

  • The guide now includes a [deploying section].

  • The FromForm derive now properly records errors involving entire forms.

  • FromForm derive can now be used in code emitted by macro_rules! macros.

  • (fix #2668 via [52de9a]) [TempFile] now ensures it flushes before being persisted.

rocket_db_pools 0.2.0

  • SQLite extensions are now supported in sqlx_sqlite.

    Use a database configuration option of extensions to specify extensions:

    [default.databases.db_name]
    url = "db.sqlite"
    # This option is only supported by the `sqlx_sqlite` driver.
    extensions = ["memvfs", "rot13"]
  • (breaking) deadpool was updated to 0.13.

  • (breaking) The Config structure has a new extensions field.

rocket_dyn_templates 0.2.0

... (truncated)

Commits

Updates rocket_http from 4a410b7 to 504efef

Changelog

Sourced from rocket_http's changelog.

Version 0.5.1 (May 22, 2024)

This release contains the following crate updates:

  • rocket 0.5.1
  • rocket_db_pools 0.2.0
  • rocket_dyn_templates 0.2.0
  • rocket_ws 0.1.1

rocket 0.5.1

  • The following char and std::ops::Range types now implement FromForm:

    • char
    • Range<T: FromForm> with start and end fields
    • RangeFrom<T: FromForm> with start field
    • RangeTo<T: FromForm> with end field
    • RangeToInclusive<T: FromForm> with end field
  • [T; N], Vec<T>, and [u8] can now be passed to uri!.

  • The guide now includes a [deploying section].

  • The FromForm derive now properly records errors involving entire forms.

  • FromForm derive can now be used in code emitted by macro_rules! macros.

  • (fix #2668 via [52de9a]) [TempFile] now ensures it flushes before being persisted.

rocket_db_pools 0.2.0

  • SQLite extensions are now supported in sqlx_sqlite.

    Use a database configuration option of extensions to specify extensions:

    [default.databases.db_name]
    url = "db.sqlite"
    # This option is only supported by the `sqlx_sqlite` driver.
    extensions = ["memvfs", "rot13"]
  • (breaking) deadpool was updated to 0.13.

  • (breaking) The Config structure has a new extensions field.

rocket_dyn_templates 0.2.0

... (truncated)

Commits

Updates time from 0.3.41 to 0.3.43

Release notes

Sourced from time's releases.

v0.3.43

See the changelog for details.

v0.3.42

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.43 [2025-09-02]

Added

  • Support for rand 0.9

Fixed

  • In the convert module, any use of per with types that were not the same (such as Nanosecond::per(Second)) would not compile due to a bug. This has been fixed.

0.3.42 [2025-08-31]

Added

  • Time::duration_until
  • Time::duration_since
  • per_t method for all types in time::convert. This is similar to the existing per method, but can return any of the primitive numeric types that can represent the result. This will cut down on as casts while ensuring correctness. Type inference isn't perfect, so you may need to provide a type annotation in some situations.
  • impl PartialOrd for Month and impl Ord for Month; this assumes the months are in the same year
  • SystemTimeExt trait, adding methods for checked arithmetic with time::Duration and obtaining the difference between two SystemTimes as a time::Duration
  • Permit using UtcDateTime with rand (this was inadvertently omitted previously)
  • impl core::error::Error for all error types (now available when the std feature is disabled)
  • MacOS can now obtain the local UTC offset in multi-threaded programs as the system APIs are thread-safe.
  • #[track_caller] has been added to all relevant methods.

Changed

  • The minimum supported Rust version is now 1.81.0.
  • The dependency on itoa has been removed, as the standard library now has similar functionality by default.
  • Formatting a component that involves a floating point number is now guaranteed to be deterministic, avoiding any subtle differences between platforms or compiler versions.

Fixed

  • Serializing timestamps with nanosecond precision should always emit the correct value. Previously, it could be off by one nanosecond due to floating point imprecision.
  • A previously unknown bug in OffsetDateTime::to_offset and UtcDateTime::to_offset has been fixed. The bug could result in a value that was invalid. It was unlikely to ever occur in real-world code, as it involved passing a UTC offset that has never been used in any location.

Miscellaneous

  • The amount of code generated by macros has been massively reduced, on the order of 65-70% for typical use cases of format_description!.

... (truncated)

Commits

Updates time-core from 0.1.4 to 0.1.6

Commits

Updates time-macros from 0.2.22 to 0.2.24

Changelog

Sourced from time-macros's changelog.

0.2.24 [2021-01-08]

Fixed

  • The implementation of OffsetDateTime::timestamp, OffsetDateTime::unix_timestamp, PrimitiveDatetime::timestamp, and OffsetDateTime::unix_timestamp have been corrected. This affects all negative timestamps with a nonzero subsecond value.

0.2.23 [2020-11-17]

Compatibility notes

Due to #293, any method that requires knowledge of the local offset will now fail on Linux. For try_ methods, this means returning an error. For others, it means assuming UTC.

Deprecated

  • UtcOffset::timestamp (moved to UtcOffset::unix_timestamp)
  • UtcOffset::timestamp_nanos (moved to UtcOffset::unix_timestamp_nanos)
  • date (moved to macros::date)
  • time (moved to macros::time)
  • offset (moved to macros::offset)
  • OffsetDateTime::now_local (assumes UTC if unable to be determined)
  • UtcOffset::local_offset_at (assumes UTC if unable to be determined)
  • UtcOffset::current_local_offset (assumes UTC if unable to be determined)
Commits

Updates zerocopy from 0.8.26 to 0.8.27

Release notes

Sourced from zerocopy's releases.

v0.8.27

What's Changed

Full Changelog: google/zerocopy@v0.8.26...v0.8.27

Commits

Updates zerocopy-derive from 0.8.26 to 0.8.27

Release notes

Sourced from zerocopy-derive's releases.

v0.8.27

What's Changed

Full Changelog: google/zerocopy@v0.8.26...v0.8.27

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 pointercrate group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [log](https://github.com/rust-lang/log) | `0.4.27` | `0.4.28` |
| [rocket](https://github.com/rwf2/Rocket) | ``4a410b7`` | ``504efef`` |
| [bitflags](https://github.com/bitflags/bitflags) | `2.9.3` | `2.9.4` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.34` | `1.2.36` |
| [raw-cpuid](https://github.com/gz/rust-cpuid) | `11.5.0` | `11.6.0` |
| [rocket_codegen](https://github.com/rwf2/Rocket) | ``4a410b7`` | ``504efef`` |
| [rocket_http](https://github.com/rwf2/Rocket) | ``4a410b7`` | ``504efef`` |
| [time](https://github.com/time-rs/time) | `0.3.41` | `0.3.43` |
| [time-core](https://github.com/time-rs/time) | `0.1.4` | `0.1.6` |
| [time-macros](https://github.com/time-rs/time) | `0.2.22` | `0.2.24` |
| [zerocopy](https://github.com/google/zerocopy) | `0.8.26` | `0.8.27` |
| [zerocopy-derive](https://github.com/google/zerocopy) | `0.8.26` | `0.8.27` |


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

Updates `rocket` from `4a410b7` to `504efef`
- [Release notes](https://github.com/rwf2/Rocket/releases)
- [Commits](rwf2/Rocket@4a410b7...504efef)

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

Updates `cc` from 1.2.34 to 1.2.36
- [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.34...cc-v1.2.36)

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 `rocket_codegen` from `4a410b7` to `504efef`
- [Release notes](https://github.com/rwf2/Rocket/releases)
- [Changelog](https://github.com/rwf2/Rocket/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rwf2/Rocket/commits)

Updates `rocket_http` from `4a410b7` to `504efef`
- [Release notes](https://github.com/rwf2/Rocket/releases)
- [Changelog](https://github.com/rwf2/Rocket/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rwf2/Rocket/commits)

Updates `time` from 0.3.41 to 0.3.43
- [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.41...v0.3.43)

Updates `time-core` from 0.1.4 to 0.1.6
- [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.22 to 0.2.24
- [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.22...v0.2.24)

Updates `zerocopy` from 0.8.26 to 0.8.27
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.26...v0.8.27)

Updates `zerocopy-derive` from 0.8.26 to 0.8.27
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.26...v0.8.27)

---
updated-dependencies:
- dependency-name: log
  dependency-version: 0.4.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: rocket
  dependency-version: 504efef179622df82ba1dbd37f2e0d9ed2b7c9e4
  dependency-type: direct:production
  dependency-group: pointercrate
- dependency-name: bitflags
  dependency-version: 2.9.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: cc
  dependency-version: 1.2.36
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: raw-cpuid
  dependency-version: 11.6.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: pointercrate
- dependency-name: rocket_codegen
  dependency-version: 504efef179622df82ba1dbd37f2e0d9ed2b7c9e4
  dependency-type: indirect
  dependency-group: pointercrate
- dependency-name: rocket_http
  dependency-version: 504efef179622df82ba1dbd37f2e0d9ed2b7c9e4
  dependency-type: indirect
  dependency-group: pointercrate
- dependency-name: time
  dependency-version: 0.3.43
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: time-core
  dependency-version: 0.1.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: time-macros
  dependency-version: 0.2.24
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: zerocopy
  dependency-version: 0.8.27
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
- dependency-name: zerocopy-derive
  dependency-version: 0.8.27
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: pointercrate
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Sep 7, 2025
@stadust stadust merged commit b1a2ec9 into master Sep 13, 2025
2 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/pointercrate-2849e64ef5 branch September 13, 2025 08:54
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.

2 participants