fix(deps): update rust crate async-trait to v0.1.80 #10

Merged
realaravinth merged 1 commit from renovate/async-trait-0.x-lockfile into master 2024-06-10 14:35:39 +05:30
Member

This PR contains the following updates:

Package Type Update Change
async-trait dependencies patch 0.1.57 -> 0.1.80

Release Notes

dtolnay/async-trait (async-trait)

v0.1.80

Compare Source

v0.1.79

Compare Source

  • Clean up some dead code

v0.1.78

Compare Source

  • Prevent unused_qualifications lint being triggered in generated code in nightly-2024-03-05 and up (#​260)

v0.1.77

Compare Source

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

v0.1.76

Compare Source

  • Documentation improvements

v0.1.75

Compare Source

  • Documentation improvements

v0.1.74

Compare Source

  • Documentation improvements

v0.1.73

Compare Source

  • Prevent generated code from triggering ignored_unit_patterns pedantic clippy lint

v0.1.72

Compare Source

  • Documentation improvements

v0.1.71

Compare Source

  • Documentation improvements

v0.1.70

Compare Source

v0.1.69

Compare Source

  • Resolve new diverging_sub_expression clippy lint in generated code

v0.1.68

Compare Source

  • Improve error message if an async fn is written without a function body in an impl block

v0.1.67

Compare Source

  • Update syn dependency to 2.x

v0.1.66

Compare Source

  • Set html_root_url attribute

v0.1.65

Compare Source

  • Fix interaction with rustc's single_use_lifetimes lint (#​238, #​239)

v0.1.64

Compare Source

  • Suppress async_yields_async clippy correctness lint in generated code (#​236, #​237)

v0.1.63

Compare Source

  • Do not require Sync on unused shared reference arguments (#​232, #​233)
  • Make expansion of nested _ and .. patterns edition independent (#​234, #​235)

v0.1.62

Compare Source

  • Improve error message involving elided lifetimes (#​229)

v0.1.61

Compare Source

  • Fix async function signatures that involve #[cfg(...)] attributes on parameters (#​227, thanks @​azriel91)

v0.1.60

Compare Source

  • Documentation improvements

v0.1.59

Compare Source

  • Support self: Arc<Self> async methods that have a default implementation provided by the trait (#​210)

v0.1.58

Compare Source

  • Improve rust-analyzer "go to definition" on the method names of an async trait (#​218)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [async-trait](https://github.com/dtolnay/async-trait) | dependencies | patch | `0.1.57` -> `0.1.80` | --- ### Release Notes <details> <summary>dtolnay/async-trait (async-trait)</summary> ### [`v0.1.80`](https://github.com/dtolnay/async-trait/releases/tag/0.1.80) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.79...0.1.80) - Fix unreachable code warning for async functions that return `!` ([#&#8203;265](https://github.com/dtolnay/async-trait/issues/265), thanks [@&#8203;de-vri-es](https://github.com/de-vri-es)) ### [`v0.1.79`](https://github.com/dtolnay/async-trait/releases/tag/0.1.79) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.78...0.1.79) - Clean up some dead code ### [`v0.1.78`](https://github.com/dtolnay/async-trait/releases/tag/0.1.78) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.77...0.1.78) - Prevent unused_qualifications lint being triggered in generated code in nightly-2024-03-05 and up ([#&#8203;260](https://github.com/dtolnay/async-trait/issues/260)) ### [`v0.1.77`](https://github.com/dtolnay/async-trait/releases/tag/0.1.77) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.76...0.1.77) - Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache ### [`v0.1.76`](https://github.com/dtolnay/async-trait/releases/tag/0.1.76) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.75...0.1.76) - Documentation improvements ### [`v0.1.75`](https://github.com/dtolnay/async-trait/releases/tag/0.1.75) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.74...0.1.75) - Documentation improvements ### [`v0.1.74`](https://github.com/dtolnay/async-trait/releases/tag/0.1.74) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.73...0.1.74) - Documentation improvements ### [`v0.1.73`](https://github.com/dtolnay/async-trait/releases/tag/0.1.73) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.72...0.1.73) - Prevent generated code from triggering ignored_unit_patterns pedantic clippy lint ### [`v0.1.72`](https://github.com/dtolnay/async-trait/releases/tag/0.1.72) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.71...0.1.72) - Documentation improvements ### [`v0.1.71`](https://github.com/dtolnay/async-trait/releases/tag/0.1.71) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.70...0.1.71) - Documentation improvements ### [`v0.1.70`](https://github.com/dtolnay/async-trait/compare/0.1.69...0.1.70) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.69...0.1.70) ### [`v0.1.69`](https://github.com/dtolnay/async-trait/releases/tag/0.1.69) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.68...0.1.69) - Resolve new diverging_sub_expression clippy lint in generated code ### [`v0.1.68`](https://github.com/dtolnay/async-trait/releases/tag/0.1.68) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.67...0.1.68) - Improve error message if an async fn is written without a function body in an impl block ### [`v0.1.67`](https://github.com/dtolnay/async-trait/releases/tag/0.1.67) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67) - Update syn dependency to 2.x ### [`v0.1.66`](https://github.com/dtolnay/async-trait/releases/tag/0.1.66) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.65...0.1.66) - Set html_root_url attribute ### [`v0.1.65`](https://github.com/dtolnay/async-trait/releases/tag/0.1.65) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.64...0.1.65) - Fix interaction with rustc's single_use_lifetimes lint ([#&#8203;238](https://github.com/dtolnay/async-trait/issues/238), [#&#8203;239](https://github.com/dtolnay/async-trait/issues/239)) ### [`v0.1.64`](https://github.com/dtolnay/async-trait/releases/tag/0.1.64) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.63...0.1.64) - Suppress async_yields_async clippy correctness lint in generated code ([#&#8203;236](https://github.com/dtolnay/async-trait/issues/236), [#&#8203;237](https://github.com/dtolnay/async-trait/issues/237)) ### [`v0.1.63`](https://github.com/dtolnay/async-trait/releases/tag/0.1.63) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.62...0.1.63) - Do not require Sync on unused shared reference arguments ([#&#8203;232](https://github.com/dtolnay/async-trait/issues/232), [#&#8203;233](https://github.com/dtolnay/async-trait/issues/233)) - Make expansion of nested `_` and `..` patterns edition independent ([#&#8203;234](https://github.com/dtolnay/async-trait/issues/234), [#&#8203;235](https://github.com/dtolnay/async-trait/issues/235)) ### [`v0.1.62`](https://github.com/dtolnay/async-trait/releases/tag/0.1.62) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.61...0.1.62) - Improve error message involving elided lifetimes ([#&#8203;229](https://github.com/dtolnay/async-trait/issues/229)) ### [`v0.1.61`](https://github.com/dtolnay/async-trait/releases/tag/0.1.61) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.60...0.1.61) - Fix async function signatures that involve #\[cfg(...)] attributes on parameters ([#&#8203;227](https://github.com/dtolnay/async-trait/issues/227), thanks [@&#8203;azriel91](https://github.com/azriel91)) ### [`v0.1.60`](https://github.com/dtolnay/async-trait/releases/tag/0.1.60) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.59...0.1.60) - Documentation improvements ### [`v0.1.59`](https://github.com/dtolnay/async-trait/releases/tag/0.1.59) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.58...0.1.59) - Support `self: Arc<Self>` async methods that have a default implementation provided by the trait ([#&#8203;210](https://github.com/dtolnay/async-trait/issues/210)) ### [`v0.1.58`](https://github.com/dtolnay/async-trait/releases/tag/0.1.58) [Compare Source](https://github.com/dtolnay/async-trait/compare/0.1.57...0.1.58) - Improve rust-analyzer "go to definition" on the method names of an async trait ([#&#8203;218](https://github.com/dtolnay/async-trait/issues/218)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4OC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlLWJvdCJdfQ==-->
renovate-bot added the
renovate-bot
label 2024-06-04 10:21:34 +05:30
renovate-bot force-pushed renovate/async-trait-0.x-lockfile from b7dda09b3a to 00d1b90538 2024-06-10 14:30:31 +05:30 Compare
realaravinth merged commit 867375673e into master 2024-06-10 14:35:39 +05:30
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: LibrePages/conductor#10
No description provided.