Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2025

Bumps the rust-dependencies group with 13 updates:

Package From To
tokio 1.43.0 1.44.0
async-trait 0.1.86 0.1.87
thiserror 2.0.11 2.0.12
anyhow 1.0.96 1.0.97
time 0.3.37 0.3.39
bytes 1.10.0 1.10.1
httparse 1.10.0 1.10.1
serde 1.0.218 1.0.219
serde_json 1.0.139 1.0.140
erased-serde 0.4.5 0.4.6
arti-client 0.27.0 0.28.0
tor-rtcompat 0.27.0 0.28.0
tempfile 3.17.1 3.18.0

Updates tokio from 1.43.0 to 1.44.0

Release notes

Sourced from tokio's releases.

Tokio v1.44.0

1.44.0 (March 7th, 2025)

This release changes the from_std method on sockets to panic if a blocking socket is provided. We determined this change is not a breaking change as Tokio is not intended to operate using blocking sockets. Doing so results in runtime hangs and should be considered a bug. Accidentally passing a blocking socket to Tokio is one of the most common user mistakes. If this change causes an issue for you, please comment on #7172.

Added

  • coop: add task::coop module (#7116)
  • process: add Command::get_kill_on_drop() (#7086)
  • sync: add broadcast::Sender::closed (#6685, #7090)
  • sync: add broadcast::WeakSender (#7100)
  • sync: add oneshot::Receiver::is_empty() (#7153)
  • sync: add oneshot::Receiver::is_terminated() (#7152)

Fixed

  • fs: empty reads on File should not start a background read (#7139)
  • process: calling start_kill on exited child should not fail (#7160)
  • signal: fix CTRL_CLOSE, CTRL_LOGOFF, CTRL_SHUTDOWN on windows (#7122)
  • sync: properly handle panic during mpsc drop (#7094)

Changes

  • runtime: clean up magic number in registration set (#7112)
  • coop: make coop yield using waker defer strategy (#7185)
  • macros: make select! budget-aware (#7164)
  • net: panic when passing a blocking socket to from_std (#7166)
  • io: clean up buffer casts (#7142)

Changes to unstable APIs

  • rt: add before and after task poll callbacks (#7120)
  • tracing: make the task tracing API unstable public (#6972)

Documented

  • docs: fix nesting of sections in top-level docs (#7159)
  • fs: rename symlink and hardlink parameter names (#7143)
  • io: swap reader/writer in simplex doc test (#7176)
  • macros: docs about select! alternatives (#7110)
  • net: rename the argument for send_to (#7146)
  • process: add example for reading Child stdout (#7141)
  • process: clarify Child::kill behavior (#7162)
  • process: fix grammar of the ChildStdin struct doc comment (#7192)
  • runtime: consistently use worker_threads instead of core_threads (#7186)

#6685: tokio-rs/tokio#6685 #6972: tokio-rs/tokio#6972 #7086: tokio-rs/tokio#7086 #7090: tokio-rs/tokio#7090

... (truncated)

Commits

Updates async-trait from 0.1.86 to 0.1.87

Release notes

Sourced from async-trait's releases.

0.1.87

  • Documentation improvements
Commits
  • 32540aa Release 0.1.87
  • 137d14c Resolve mem_replace_with_default clippy lint
  • 45fd82a Ignore elidable_lifetime_names pedantic clippy lint
  • ea2f2a2 Point standard library links to stable
  • 3b78161 Update ui test suite to nightly-2025-02-12
  • See full diff in compare view

Updates thiserror from 2.0.11 to 2.0.12

Release notes

Sourced from thiserror's releases.

2.0.12

  • Prevent elidable_lifetime_names pedantic clippy lint in generated impl (#413)
Commits
  • 95a5126 Release 2.0.12
  • 76490f7 Merge pull request #413 from dtolnay/elidablelifetime
  • 9f27b76 Ignore elidable_lifetime_names pedantic clippy lint
  • daf2a6f Resolve some elidable_lifetime_names pedantic clippy lint
  • 5f07160 Point standard library links to stable
  • 6706a51 Convert html links to intra-doc links
  • 2706873 More precise gitignore patterns
  • 70bc20d Remove **/*.rs.bk from project-specific gitignore
  • See full diff in compare view

Updates anyhow from 1.0.96 to 1.0.97

Release notes

Sourced from anyhow's releases.

1.0.97

  • Documentation improvements
Commits

Updates time from 0.3.37 to 0.3.39

Release notes

Sourced from time's releases.

v0.3.39

See the changelog for details.

v0.3.38

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.39 [2025-03-06]

Fixed

  • Doc tests run successfully with the default feature set.
  • wasm builds work again.

Both of these were regressions in v0.3.38 and are now checked in CI.

0.3.38 [2025-03-05]

Added

  • The [year] component (in format descriptions) now supports a range modifier, which can be either standard or extended. The default is extended for backwards compatibility. This is intended as a manner to opt out of the extended range when the large-dates feature is enabled. When the large-dates feature is not enabled, the modifier has no effect.

  • UtcDateTime, which is semantically equivalent to an OffsetDateTime with UTC as its offset. The advantage is that it is the same size as a PrimitiveDateTime and has improved operability with well-known formats.

    As part of this, there were some other additions:

    • utc_datetime! macro, which is similar to the datetime! macro but constructs a UtcDateTime.
    • PrimitiveDateTime::as_utc
    • OffsetDateTime::to_utc
    • OffsetDateTime::checked_to_utc
  • time::serde::timestamp::milliseconds_i64, which is a module to serialize/deserialize timestamps as the Unix timestamp. The pre-existing module does this as an i128 where an i64 would suffice. This new module should be preferred.

Changed

  • error::Format has had its source() implementation changed to no longer return a boxed value from the ComponentRange variant. If you were explicitly expecting this, you will need to update your code. The method API remains unchanged.
  • [year repr:century] supports single-digit values.
  • All format_into methods accept ?Sized references.

Miscellaneous

  • Some non-exhaustive enum variants that are no longer used have been modified to be statically proven as uninhabited. The relevant fields are doc-hidden and not semver-guaranteed to remain as such, though it is unlikely to change.
  • An unnecessary check when parsing RFC 2822 has been removed.
  • Various methods have had their implementations changed, resulting in significant performance gains. Among the methods changed are
    • util::is_leap_year
    • util::weeks_in_year
    • Month::length
    • Date::to_calendar_date

... (truncated)

Commits
  • 7949d2c v0.3.39 release
  • f51623b Fix breakage from v0.3.38
  • 1a31c05 v0.3.38 release
  • addf231 Permit unsized writers for format_into
  • 338f84f Allow clippy::ref_option lint for serde::format_description.
  • f8ecd81 feat: timestamp::milliseconds_i64 serializer
  • ce03bca Update Unicode license for cargo-audit
  • 3d0b981 Add parentheses for clarity
  • 3096301 Remove specific year from license
  • ec327a2 Optimize Julian day calculations
  • Additional commits viewable in compare view

Updates bytes from 1.10.0 to 1.10.1

Release notes

Sourced from bytes's releases.

Bytes v1.10.1

1.10.1 (March 5th, 2025)

Fixed

  • Fix memory leak when using to_vec with Bytes::from_owner (#773)

#773: tokio-rs/bytes#773

Changelog

Sourced from bytes's changelog.

1.10.1 (March 5th, 2025)

Fixed

  • Fix memory leak when using to_vec with Bytes::from_owner (#773)
Commits

Updates httparse from 1.10.0 to 1.10.1

Release notes

Sourced from httparse's releases.

v1.10.1

What's Changed

New Contributors

Full Changelog: seanmonstar/httparse@v1.10.0...v1.10.1

Commits

Updates serde from 1.0.218 to 1.0.219

Release notes

Sourced from serde's releases.

v1.0.219

  • Prevent absolute_paths Clippy restriction being triggered inside macro-generated code (#2906, thanks @​davidzeng0)
Commits
  • 49d098d Release 1.0.219
  • 40f1d19 Wrap dummy.rs to 80 columns
  • 514848b Merge pull request #2906 from davidzeng0/master
  • 168b6cf fix clippy absolute paths warning
  • a8bdd17 Remove unused Punctuated import
  • 1c96013 Resolve mem_replace_with_default clippy lint
  • f0d1ae0 Ignore elidable_lifetime_names pedantic clippy lint
  • e3eaa6a Merge pull request #2896 from dtolnay/stabledoc
  • 6a630cf Also link to stable proc_macro
  • See full diff in compare view

Updates serde_json from 1.0.139 to 1.0.140

Release notes

Sourced from serde_json's releases.

v1.0.140

  • Documentation improvements
Commits
  • 7627834 Release 1.0.140
  • d77a498 Merge pull request #1245 from serde-rs/powerpc
  • b34d317 Delete unused gcc installation
  • f7200c3 Ignore unbuffered_bytes clippy lint
  • 76cd4fb Ignore elidable_lifetime_names pedantic clippy lint
  • 400eaa9 Point standard library links to stable
  • See full diff in compare view

Updates erased-serde from 0.4.5 to 0.4.6

Release notes

Sourced from erased-serde's releases.

0.4.6

  • Documentation improvements
Commits
  • 29441af Release 0.4.6
  • 9b74936 Point standard library links to stable
  • 75ff87f Unset doc-scrape-examples for lib target
  • 61eb6de Resolve unnecessary_semicolon pedantic clippy lint
  • 3fda9e2 More precise gitignore patterns
  • 1ea7a7a Update ui test suite to nightly-2024-12-09
  • 2abd6e0 Prevent upload-artifact step from causing CI failure
  • cf3129b Update ui test suite to nightly-2024-10-30
  • e370b51 Upload CI Cargo.lock for reproducing failures
  • 77f80a8 Fill in ignore reasons in all #[ignore] attributes
  • See full diff in compare view

Updates arti-client from 0.27.0 to 0.28.0

Updates tor-rtcompat from 0.27.0 to 0.28.0

Updates tempfile from 3.17.1 to 3.18.0

Changelog

Sourced from tempfile's changelog.

3.18.0

  • Update rustix to 1.0.0.
  • Make NamedTempFile::persist_noclobber atomic on Apple operating systems. It's now atomic on MacOS, Windows, and Linux (depending on the OS version and filesystem used).
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-dependencies group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [tokio](https://github.com/tokio-rs/tokio) | `1.43.0` | `1.44.0` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.86` | `0.1.87` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.11` | `2.0.12` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.96` | `1.0.97` |
| [time](https://github.com/time-rs/time) | `0.3.37` | `0.3.39` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.10.0` | `1.10.1` |
| [httparse](https://github.com/seanmonstar/httparse) | `1.10.0` | `1.10.1` |
| [serde](https://github.com/serde-rs/serde) | `1.0.218` | `1.0.219` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.139` | `1.0.140` |
| [erased-serde](https://github.com/dtolnay/erased-serde) | `0.4.5` | `0.4.6` |
| arti-client | `0.27.0` | `0.28.0` |
| tor-rtcompat | `0.27.0` | `0.28.0` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.17.1` | `3.18.0` |


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

Updates `async-trait` from 0.1.86 to 0.1.87
- [Release notes](https://github.com/dtolnay/async-trait/releases)
- [Commits](dtolnay/async-trait@0.1.86...0.1.87)

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

Updates `anyhow` from 1.0.96 to 1.0.97
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.96...1.0.97)

Updates `time` from 0.3.37 to 0.3.39
- [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.37...v0.3.39)

Updates `bytes` from 1.10.0 to 1.10.1
- [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.0...v1.10.1)

Updates `httparse` from 1.10.0 to 1.10.1
- [Release notes](https://github.com/seanmonstar/httparse/releases)
- [Commits](seanmonstar/httparse@v1.10.0...v1.10.1)

Updates `serde` from 1.0.218 to 1.0.219
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.218...v1.0.219)

Updates `serde_json` from 1.0.139 to 1.0.140
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.139...v1.0.140)

Updates `erased-serde` from 0.4.5 to 0.4.6
- [Release notes](https://github.com/dtolnay/erased-serde/releases)
- [Commits](dtolnay/erased-serde@0.4.5...0.4.6)

Updates `arti-client` from 0.27.0 to 0.28.0

Updates `tor-rtcompat` from 0.27.0 to 0.28.0

Updates `tempfile` from 3.17.1 to 3.18.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.17.1...v3.18.0)

---
updated-dependencies:
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: time
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: httparse
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: erased-serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: arti-client
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: tor-rtcompat
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
...

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 Mar 10, 2025
@codecov
Copy link

codecov bot commented Mar 10, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

📢 Thoughts on this report? Let us know!

@ibigbug ibigbug merged commit 3f29ca8 into master Mar 10, 2025
32 checks passed
@ibigbug ibigbug deleted the dependabot/cargo/rust-dependencies-08eac6f867 branch March 10, 2025 14:12
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