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

Bump the all group across 1 directory with 5 updates #3632

Merged
merged 1 commit into from
Sep 3, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 3, 2024

Bumps the all group with 5 updates in the / directory:

Package From To
async-trait 0.1.81 0.1.82
tokio 1.39.3 1.40.0
delegate 0.12.0 0.13.0
derive_builder 0.20.0 0.20.1
syn 2.0.76 2.0.77

Updates async-trait from 0.1.81 to 0.1.82

Release notes

Sourced from async-trait's releases.

0.1.82

  • Prevent elided_named_lifetimes lint being produced in generated code (#276)
Commits
  • f8e5bb4 Release 0.1.82
  • 8fbf118 Merge pull request #276 from dtolnay/elidednamed
  • 6fa246a Ignore nightly's new elided_named_lifetimes lint in generated code
  • d542a0d Upload CI Cargo.lock for reproducing failures
  • 8828c35 Sort dependency features in Cargo.toml
  • ba9793a Update ui test suite to nightly-2024-08-11
  • 82c62cd Update ui test suite to nightly-2024-07-25
  • 370ee12 Update ui test suite to nightly-2024-07-20
  • See full diff in compare view

Updates tokio from 1.39.3 to 1.40.0

Release notes

Sourced from tokio's releases.

Tokio v1.40.0

1.40.0 (August 30th, 2024)

Added

  • io: add util::SimplexStream (#6589)
  • process: stabilize Command::process_group (#6731)
  • sync: add {TrySendError,SendTimeoutError}::into_inner (#6755)
  • task: add JoinSet::join_all (#6784)

Added (unstable)

  • runtime: add Builder::{on_task_spawn, on_task_terminate} (#6742)

Changed

  • io: use vectored io for write_all_buf when possible (#6724)
  • runtime: prevent niche-optimization to avoid triggering miri (#6744)
  • sync: mark mpsc types as UnwindSafe (#6783)
  • sync,time: make Sleep and BatchSemaphore instrumentation explicit roots (#6727)
  • task: use NonZeroU64 for task::Id (#6733)
  • task: include panic message when printing JoinError (#6753)
  • task: add #[must_use] to JoinHandle::abort_handle (#6762)
  • time: eliminate timer wheel allocations (#6779)

Documented

  • docs: clarify that [build] section doesn't go in Cargo.toml (#6728)
  • io: clarify zero remaining capacity case (#6790)
  • macros: improve documentation for select! (#6774)
  • sync: document mpsc channel allocation behavior (#6773)

#6589: tokio-rs/tokio#6589 #6724: tokio-rs/tokio#6724 #6727: tokio-rs/tokio#6727 #6728: tokio-rs/tokio#6728 #6731: tokio-rs/tokio#6731 #6733: tokio-rs/tokio#6733 #6742: tokio-rs/tokio#6742 #6744: tokio-rs/tokio#6744 #6753: tokio-rs/tokio#6753 #6755: tokio-rs/tokio#6755 #6762: tokio-rs/tokio#6762 #6773: tokio-rs/tokio#6773 #6774: tokio-rs/tokio#6774 #6779: tokio-rs/tokio#6779 #6783: tokio-rs/tokio#6783 #6784: tokio-rs/tokio#6784 #6790: tokio-rs/tokio#6790

Commits

Updates delegate from 0.12.0 to 0.13.0

Changelog

Sourced from delegate's changelog.

0.13.0 (2. 9. 2024)

  • Generalize match arms handling. You can now combine a match expression target with annotations like #[into] and others:
struct A;
impl A {
pub fn callable(self) -> Self {
self
}
}
struct B;
impl B {
pub fn callable(self) -> Self {
self
}
}
enum Common {
A(A),
B(B),
}
impl From<A> for Common {
fn from(inner: A) -> Self {
Self::A(inner)
}
}
impl From<B> for Common {
fn from(inner: B) -> Self {
Self::B(inner)
}
}
impl Common {
delegate! {
to match self {
// ---------- match arms have incompatible types
Common::A(inner) => inner;
Common::B(inner) => inner;
} {
#[into]
pub fn callable(self) -> Self;
}
}
</tr></table>

... (truncated)

Commits
  • 0f61120 Bump version to 0.13.0
  • d36262b Modify changelog
  • 3b21055 Make #[into] and #[try_into] generate no_std-compatible code
  • 868eaee Fix doc indentation
  • c681324 Fix doc indentation
  • eb03baf Add example of delegating associated functions
  • 556adea Generalize handling of match expressions
  • See full diff in compare view

Updates derive_builder from 0.20.0 to 0.20.1

Release notes

Sourced from derive_builder's releases.

v0.20.1

  • Forward default type params #319
Commits
  • 107bd5d Bump version to 0.20.1
  • 6daff1e clippy: fix for latest stable
  • 1489bca forward default typeparam
  • da455f6 Remove quotation marks from metas in tests
  • ed9798d Remove dead code from test
  • 6408999 Don't refer to TryInto as not-yet-stable
  • a9fb83a Update example style to remove #[macro_use]
  • 10152f1 Use darling's with to handle unnesting attrs
  • 06ba461 Refactor visibility options with #[darling(flatten)]
  • 233c3d8 Resolve prelude redundant import warnings in nightly
  • See full diff in compare view

Updates syn from 2.0.76 to 2.0.77

Release notes

Sourced from syn's releases.

2.0.77

  • Support parsing Expr::Tuple in non-"full" mode (#1727)
Commits
  • 6232266 Release 2.0.77
  • 97acbf0 Merge pull request #1727 from dtolnay/exprparen
  • a3b5a5c Support parsing Expr::Tuple in derive
  • 3c24f57 Run upload-artifact action regardless of previous step failure
  • 78608a3 Upload CI Cargo.lock for reproducing failures
  • See full diff in compare view

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 all group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.81` | `0.1.82` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.3` | `1.40.0` |
| [delegate](https://github.com/kobzol/rust-delegate) | `0.12.0` | `0.13.0` |
| [derive_builder](https://github.com/colin-kiegel/rust-derive-builder) | `0.20.0` | `0.20.1` |
| [syn](https://github.com/dtolnay/syn) | `2.0.76` | `2.0.77` |



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

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

Updates `delegate` from 0.12.0 to 0.13.0
- [Changelog](https://github.com/Kobzol/rust-delegate/blob/main/CHANGELOG.md)
- [Commits](Kobzol/rust-delegate@v0.12.0...v0.13.0)

Updates `derive_builder` from 0.20.0 to 0.20.1
- [Release notes](https://github.com/colin-kiegel/rust-derive-builder/releases)
- [Commits](colin-kiegel/rust-derive-builder@v0.20.0...v0.20.1)

Updates `syn` from 2.0.76 to 2.0.77
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.76...2.0.77)

---
updated-dependencies:
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: delegate
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: derive_builder
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from ss-es as a code owner September 3, 2024 03:36
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Sep 3, 2024
@ss-es ss-es enabled auto-merge (squash) September 3, 2024 14:43
@ss-es ss-es merged commit 02de16c into main Sep 3, 2024
34 of 37 checks passed
@ss-es ss-es deleted the dependabot/cargo/all-24283a53fb branch September 3, 2024 14:43
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