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

[cargo](deps): Bump the deps group with 29 updates #123

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 15, 2024

Bumps the deps group with 29 updates:

Package From To
anyhow 1.0.81 1.0.82
async-trait 0.1.79 0.1.80
aws-config 1.1.9 1.1.10
aws-sdk-s3 1.21.0 1.22.0
aws-smithy-runtime-api 1.3.0 1.4.0
moka 0.12.5 0.12.6
reqwest-middleware 0.2.5 0.3.0
time 0.3.34 0.3.36
rstest 0.18.2 0.19.0
allocator-api2 0.2.16 0.2.18
async-lock 2.8.0 3.3.0
aws-credential-types 1.1.8 1.2.0
aws-runtime 1.1.8 1.1.9
aws-sdk-sso 1.18.0 1.19.0
aws-sdk-ssooidc 1.18.0 1.19.0
aws-sdk-sts 1.18.0 1.19.0
aws-smithy-runtime 1.2.1 1.3.0
aws-types 1.1.8 1.1.9
bumpalo 3.15.4 3.16.0
cc 1.0.91 1.0.94
either 1.10.0 1.11.0
encoding_rs 0.8.33 0.8.34
event-listener 2.5.3 4.0.3
getrandom 0.2.13 0.2.14
proc-macro2 1.0.79 1.0.80
quote 1.0.35 1.0.36
rstest_macros 0.18.2 0.19.0
syn 2.0.58 2.0.59
time-macros 0.2.17 0.2.18

Updates anyhow from 1.0.81 to 1.0.82

Release notes

Sourced from anyhow's releases.

1.0.82

  • Documentation improvements
Commits
  • 074bdea Release 1.0.82
  • 47a4fbf Merge pull request #360 from dtolnay/docensure
  • c5af1db Make ensure's doc comment apply to the cfg(not(doc)) macro too
  • bebc7a2 Revert "Temporarily disable miri on doctests"
  • f2c4db9 Update ui test suite to nightly-2024-03-31
  • 028cbee Explicitly install a Rust toolchain for cargo-outdated job
  • 7a4cac5 Merge pull request #358 from dtolnay/workspacewrapper
  • 939db01 Apply RUSTC_WORKSPACE_WRAPPER
  • 9f84a37 Temporarily disable miri on doctests
  • 45e5a58 Ignore dead code lint in test
  • Additional commits viewable in compare view

Updates async-trait from 0.1.79 to 0.1.80

Release notes

Sourced from async-trait's releases.

0.1.80

  • Fix unreachable code warning for async functions that return ! (#265, thanks @​de-vri-es)
Commits
  • d528b5a Release 0.1.80
  • 10b5c99 Drop support for compilers older than 1.47
  • 83a5422 Drop support for compilers older than 1.45
  • 22d017e Build script no longer looks at $DOCS_RS
  • b64d041 Move never_type test under issue266
  • b683da8 Merge pull request #265 from de-vri-es/fix-unreachable-code-warning
  • c8d958d Fix unreachable code warning for functions that return !
  • 4f0b72e Explicitly install a Rust toolchain for cargo-outdated job
  • See full diff in compare view

Updates aws-config from 1.1.9 to 1.1.10

Commits

Updates aws-sdk-s3 from 1.21.0 to 1.22.0

Commits

Updates aws-smithy-runtime-api from 1.3.0 to 1.4.0

Commits

Updates moka from 0.12.5 to 0.12.6

Changelog

Sourced from moka's changelog.

Version 0.12.6

Fixed

  • Fixed a bug in future::Cache that pending run_pending_tasks calls may cause infinite busy loop in an internal schedule_write_op method (#412[gh-issue-0412]):
    • This bug was introduced in v0.12.0 when the background threads were removed from future::Cache.
    • This bug can occur when run_pending_task method is called by user code while cache is receiving a very high number of concurrent cache write operations. (e.g. insert, get_with, invalidate etc.)
    • When it occurs, the schedule_write_op method will be spinning in a busy loop forever, causing high CPU usage and all other async tasks to be starved.

Changed

  • Upgraded async-lock crate used by future::Cache from v2.4 to the latest v3.3.
Commits
  • 1d2af53 Merge pull request #416 from moka-rs/fix-stacked-borrow-violation
  • 7879dde Fix Miri error (Stacked Borrow violation) in the test code of the timer wheel
  • 2f23e5c Merge pull request #415 from moka-rs/avoid-async-scheduler-busy-loop
  • c50d186 Update the changelog
  • 6c4f0ac Bump the version to v0.12.6
  • 8805940 Prevent the busy loop of async schedulers
  • dc960af Fix typos in comments
  • 5996c87 Prevent the busy loop of async schedulers
  • 6ba5445 Merge pull request #413 from moka-rs/fix-ci-2024-04-10/v0.12
  • 4042c4a Fix Clippy warnings
  • Additional commits viewable in compare view

Updates reqwest-middleware from 0.2.5 to 0.3.0

Release notes

Sourced from reqwest-middleware's releases.

reqwest-middleware-v0.3.0

Breaking changes

  • Upgraded reqwest to 0.12.0
    • Removed default-features json and multipart from reqwest dependency
    • Added json and multipart features to reqwest-middleware
  • Upgraded matchit to 0.8.0
    • You may need to update some matches that look like /a/:some_var to /a/{some_var}
  • Removed task_local_extensions in favour of http::Extensions
    • All extensions must be Clone now.

Changed

  • RequestBuilder::try_clone now clones the extensions.

Added

  • Implemented Service for ClientWithMiddleware to have more feature parity with reqwest.
  • Added more methods like build_split to have more feature parity with reqwest.
  • Added more documentation
Changelog

Sourced from reqwest-middleware's changelog.

[0.3.0] - 2024-04-10

Breaking changes

  • Upgraded reqwest to 0.12.0
    • Removed default-features json and multipart from reqwest dependency
    • Added json and multipart features to reqwest-middleware
  • Upgraded matchit to 0.8.0
    • You may need to update some matches that look like /a/:some_var to /a/{some_var}
  • Removed task_local_extensions in favour of http::Extensions
    • All extensions must be Clone now.

Changed

  • RequestBuilder::try_clone now clones the extensions.

Added

  • Implemented Service for ClientWithMiddleware to have more feature parity with reqwest.
  • Added more methods like build_split to have more feature parity with reqwest.
  • Added more documentation
Commits

Updates time from 0.3.34 to 0.3.36

Release notes

Sourced from time's releases.

v0.3.36

See the changelog for details.

v0.3.35

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.36 [2024-04-10]

# Fixed

  • FormatItem can be used as part of an import path. See #675 for details.

#675: time-rs/time#675

0.3.35 [2024-04-10]

Added

  • Duration::checked_neg
  • ext::InstantExt, which provides methods for using time::Duration with std::time::Instant

Changed

  • Instant is deprecated. It is recommended to use std::time::Instant directly, importing time::ext::InstantExt for interoperability with time::Duration.
  • FormatItem has been renamed to BorrowedFormatItem, avoiding confusion with OwnedFormatItem. An alias has been added for backwards compatibility.

Fixed

  • The weekday is optional when parsing RFC2822.
  • The range of sub-second values in Duration is documented correctly. The previous documentation contained an off-by-one error.
  • Leap seconds are now correctly handled when parsing ISO 8601.
Commits
  • 3c3c546 pub use instead of pub type re-exporting
  • 266178d Update code coverage CI
  • 131049e v0.3.35 release
  • 9c15ee3 Permit leap seconds when parsing ISO 8601
  • d279d8d Fix invalid offset hour diagnostic test
  • f04a28f Eliminate unreachable branch
  • 06a096d Rename FormatItem to BorrowedFormatItem
  • fd664ee Include diagnostics regression
  • b8d09a7 Address nightly lints
  • 330865a Update deny.toml
  • Additional commits viewable in compare view

Updates rstest from 0.18.2 to 0.19.0

Release notes

Sourced from rstest's releases.

Introduce MSRV and minor fixes

Changelog

Sourced from rstest's changelog.

[0.19.0] 2024/4/9

Changed

  • Defined rust-version for each crate (see #227)

Fixed

  • #[once] fixtures now require the returned type to be Sync to prevent UB when tests are executed in parallel. (see #235 for more details)

  • #[future(awt)] and #[awt] now properly handle mutable (mut) parameters by treating futures as immutable and treating the awaited rebinding as mutable.

Commits

Updates allocator-api2 from 0.2.16 to 0.2.18

Commits
  • 100147d Bump patch version
  • b0f3849 Update tests
  • d96530e Fix warning
  • 4b115a4 Bump patch version
  • c50521d Merge pull request #13 from jess-sol/main
  • 4d178c7 Add Write implementation for Vec
  • 738620d Merge pull request #11 from cloneable/fix-vec-in-zero-elements
  • 7f86d4b Fix vec![in] without elements to use correct allocator
  • 6a67e3c Merge pull request #4 from decathorpe/main
  • c0b5043 align included license files with Rust project best practices
  • See full diff in compare view

Updates async-lock from 2.8.0 to 3.3.0

Release notes

Sourced from async-lock's releases.

v3.3.0

  • Add a forget() method for semaphore guards. (#73)
  • Increase MSRV to v1.60. (#75)

v3.2.0

  • Add missing methods for blocking on locking with types wrapped in Arc (#71).

v3.1.2

  • Bump event-listener to version v4.0.0. (#69)

v3.1.1

  • Add a note to the documentation comparing this crate against libstd's locks. (#58)

v3.1.0

  • Add a Default implementation for OnceCell (#63).

v3.0.0

  • Breaking: Add an enabled-by-default std feature that allows using this crate without the standard library. (#43)
  • Support blocking and non-blocking operations on the same locks. (#56)
  • Switch to a more efficient event notification mechanism. (#43)
Changelog

Sourced from async-lock's changelog.

Version 3.3.0

  • Add a forget() method for semaphore guards. (#73)
  • Increase MSRV to v1.60. (#75)

Version 3.2.0

  • Add missing methods for blocking on locking with types wrapped in Arc (#71).

Version 3.1.2

  • Bump event-listener to version v4.0.0. (#69)

Version 3.1.1

  • Add a note to the documentation comparing this crate against libstd's locks. (#58)

Version 3.1.0

  • Add a Default implementation for OnceCell (#63).

Version 3.0.0

  • Breaking: Add an enabled-by-default std feature that allows using this crate without the standard library. (#43)
  • Support blocking and non-blocking operations on the same locks. (#56)
  • Switch to a more efficient event notification mechanism. (#43)
Commits

Updates aws-credential-types from 1.1.8 to 1.2.0

Commits

Updates aws-runtime from 1.1.8 to 1.1.9

Commits

Updates aws-sdk-sso from 1.18.0 to 1.19.0

Commits

Updates aws-sdk-ssooidc from 1.18.0 to 1.19.0

Commits

Updates aws-sdk-sts from 1.18.0 to 1.19.0

Commits

Updates aws-smithy-runtime from 1.2.1 to 1.3.0

Commits

Updates aws-types from 1.1.8 to 1.1.9

Commits

Updates bumpalo from 3.15.4 to 3.16.0

Changelog

Sourced from bumpalo's changelog.

3.16.0

Released 2024-04-08.

Added

  • Added an optional, off-by-default dependency on the serde crate. Enabling this dependency allows you to serialize Bumpalo's collection and box types. Deserialization is not implemented, due to constraints of the deserialization trait.

Commits

Updates cc from 1.0.91 to 1.0.94

Release notes

Sourced from cc's releases.

1.0.94

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.93...1.0.94

1.0.93

What's Changed

Full Changelog: rust-lang/cc-rs@1.0.92...1.0.93

1.0.92

What's Changed

Full Changelog: rust-lang/cc-rs@1.0.91...1.0.92

Commits

Updates either from 1.10.0 to 1.11.0

Commits

Updates encoding_rs from 0.8.33 to 0.8.34

Commits
  • a0c5c57 Increment version number to 0.8.34
  • 8bcba0b Move a negation to the right place and cargo fmt
  • 29668e3 Move a negation to the right place
  • dbf673e Work around bad SIMD codegen on 32-bit ARM
  • 3c96213 Add rust-version to Cargo.toml
  • 98f3c6a Update README
  • 598edc8 Port from packed_simd crate to portable_simd feature (aarch64 part)
  • 2d198c8 Port from packed_simd crate to portable_simd feature (x86_64 part)
  • 9217fd2 Remove the remains of Travis
  • 966fc0a wip mem
  • Additional commits viewable in compare view

Updates event-listener from 2.5.3 to 4.0.3

Release notes

Sourced from event-listener's releases.

v4.0.3

  • Relax MSRV to 1.60. (#110)

v4.0.2

  • Avoid spinning in wait_deadline. (#107)

v4.0.1

  • Fix a use-after-move error after an EventListener is assigned to listen to another Event. (#101)

v4.0.0

  • Breaking: Fix a footgun in the EventListener type. EventListener::new() now no longer takes an &Event as an argument, and EventListener::listen() takes the &Event as an argument. Hopefully this should prevent .awaiting on a listener without making sure it's listening first. (#94)

v3.1.0

  • Implement UnwindSafe and RefUnwindSafe for EventListener. This was unintentionally removed in version 3 (#96).

v3.0.1

  • Emphasize that listen() must be called on EventListener in documentation. (#90)
  • Write useful output in fmt::Debug implementations. (#86)

v3.0.0

  • Use the parking crate instead of threading APIs (#27)
  • Bump MSRV to 1.59 (#71)
  • Breaking: Make this crate no_std-compatible on default-features = false. (#34)
  • Create a new event-listener-strategy crate for abstracting over blocking/non-blocking operations. (#49)
  • Breaking: Change the EventListener API to be !Unpin. (#51)
  • Enable a feature for the portable-atomic crate. (#53)
  • Breaking: Add a Notification trait which is used to enable tagged events. (#52)
  • Add an is_notified() method to Event. (#48)
  • Breaking: Make it so notify() returns the number of listeners notified. (#57)
Changelog

Sourced from event-listener's changelog.

Version 4.0.3

  • Relax MSRV to 1.60. (#110)

Version 4.0.2

  • Avoid spinning in wait_deadline. (#107)

Version 4.0.1

  • Fix a use-after-move error after an EventListener is assigned to listen to another Event. (#101)

Version 4.0.0

  • Breaking: Fix a footgun in the EventListener type. EventListener::new() now no longer takes an &Event as an argument, and EventListener::listen() takes the &Event as an argument. Hopefully this should prevent .awaiting on a listener without making sure it's listening first. (#94)

Version 3.1.0

  • Implement UnwindSafe and RefUnwindSafe for EventListener. This was unintentionally removed in version 3 (#96).

Version 3.0.1

  • Emphasize that listen() must be called on EventListener in documentation. (#90)
  • Write useful output in fmt::Debug implementations. (#86)

Version 3.0.0

  • Use the parking crate instead of threading APIs (#27)
  • Bump MSRV to 1.59 (#71)
  • Breaking: Make this crate no_std-compatible on default-features = false. (#34)
  • Create a new event-listener-strategy crate for abstracting over blocking/non-blocking operations. (#49)
  • Breaking: Change the EventListener API to be !Unpin. (#51)
  • Enable a feature for the portable-atomic crate. (#53)
  • Breaking: Add a Notification trait which is used to enable tagged events. (#52)
  • Add an is_notified() method to Event. (#48)
  • Breaking: Make it so notify() returns the number of listeners notified. (#57)
Commits

Updates getrandom from 0.2.13 to 0.2.14

Changelog

Sourced from getrandom's changelog.

[0.2.14] - 2024-04-08

Fixed

  • Enable /dev/urandom fallback for MUSL-based Linux targets #408

#408: rust-random/getrandom#408

Commits

Updates proc-macro2 from 1.0.79 to 1.0.80

Release notes

Sourced from proc-macro2's releases.

1.0.80

  • Add Literal::byte_character constructor (#449)
  • Add Literal::c_string constructor #450)
Commits
  • da51f8d Release 1.0.80
  • 392fa6c Ignore needless_pass_by_value pedantic clippy lint in test
  • 1ff5c1f Ignore needless_raw_string_hashes pedantic clippy lint in test
  • 0c9449e Import some Literal tests from libproc_macro
  • 28c87ad Add tests of negative literal construction
  • c61f5db Add some tests of cstr raw literals
  • d50dcd9 Merge pull request #450 from dtolnay/cstr
  • 70a804b Add Literal::c_string constructor
  • 45730bc Adjust Literal constructor argument names to match those in libproc_macro
  • 26d1d3f Merge pull request #449 from dtolnay/bytechar
  • Additional commits viewable in compare view

Updates quote from 1.0.35 to 1.0.36

Release notes

Sourced from quote's releases.

1.0.36

  • Documentation improvements
Commits
  • 5d4880c Release 1.0.36
  • 1dd7ce7 Merge pull request #273 from dtolnay/doc
  • 0bc5d12 Apply doc comment to cfg(not(doc)) macros too
  • c295f5c Revert "Temporarily disable miri on doctests"
  • 435bd1b Update ui test suite to nightly-2024-03-31
  • cc3847d Explicitly install a Rust toolchain for cargo-outdated job
  • 6259d49 Temporarily disable miri on doctests
  • bdb4b59 Update ui test suite to nightly-2024-02-08
  • c2aeca9 Update ui test suite to nightly-2024-01-31
  • 376a061 Merge pull request #270 from dtolnay/bench
  • Additional commits viewable in compare view

Updates rstest_macros from 0.18.2 to 0.19.0

Release notes

Sourced from rstest_macros's releases.

Introduce MSRV and minor fixes

Changelog

Sourced from rstest_macros's changelog.

[0.19.0] 2024/4/9

Changed

  • Defined rust-version for each crate (see #227)

Fixed

  • #[once] fixtures now require the returned type to be Sync to prevent UB when tests are executed in parallel. (see #235 for more details)

  • #[future(awt)] and #[awt] now properly handle mutable (mut) parameters by treating futures as immutable and treating the awaited rebinding as mutable.

Commits

Updates syn from 2.0.58 to 2.0.59

Release notes

Sourced from syn's releases.

2.0.59

  • Parse c"…" and cr"…" C-string literal syntax as Lit::CStr (#1502)
Commits
  • 922ea2d Release 2.0.59
  • 8db6e35 Merge pull request #1622 from dtolnay/cstr
  • ff67031 Enable rust-lang/rust test files that contain C-string literals
  • 77fb56f Add CStr literal tests
  • 6eb76ef Add Lit::CStr
  • 1212586 Merge pull request #1621 from dtolnay/edition
  • 6a78bba Raise default edition of rust-lang/rust test files to 2021
  • 82e572c Add br# suffix test
  • b1a55dc Reduce escaping in literal tests
  • ade35a6 Delete obsolete integration test
  • Additional commits viewable in compare view

Updates time-macros from 0.2.17 to 0.2.18

Changelog

Sourced from time-macros's changelog.

0.2.18 [2020-09-08]

Changed

  • The following functions are const fn on rustc ≥ 1.46:
    • Date::try_from_ymd
    • Date::try_from_yo
    • Time::try_from_hms
    • Time::try_from_hms_milli
    • Time::try_from_hms_micro
    • Time::try_from_hms_nano
  • An error module has been created where all existing error types are contained. The Error suffix has been dropped from these types.
  • An ext module has been created where extension traits are contained.
  • A util module has been created where utility functions are contained.
  • error::ComponentRange now implements Copy.

For back-compatibility, all items that were moved to newly-contained modules have been re-exported from their previous locations (and in the case of the error module, with their previous name).

Fixes

Parsing format::Rfc3339 now correctly handles the UTC offset (#274).

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 deps group with 29 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.81` | `1.0.82` |
| [async-trait](https://github.com/dtolnay/async-trait) | `0.1.79` | `0.1.80` |
| [aws-config](https://github.com/smithy-lang/smithy-rs) | `1.1.9` | `1.1.10` |
| [aws-sdk-s3](https://github.com/awslabs/aws-sdk-rust) | `1.21.0` | `1.22.0` |
| [aws-smithy-runtime-api](https://github.com/smithy-lang/smithy-rs) | `1.3.0` | `1.4.0` |
| [moka](https://github.com/moka-rs/moka) | `0.12.5` | `0.12.6` |
| [reqwest-middleware](https://github.com/TrueLayer/reqwest-middleware) | `0.2.5` | `0.3.0` |
| [time](https://github.com/time-rs/time) | `0.3.34` | `0.3.36` |
| [rstest](https://github.com/la10736/rstest) | `0.18.2` | `0.19.0` |
| [allocator-api2](https://github.com/zakarumych/allocator-api2) | `0.2.16` | `0.2.18` |
| [async-lock](https://github.com/smol-rs/async-lock) | `2.8.0` | `3.3.0` |
| [aws-credential-types](https://github.com/smithy-lang/smithy-rs) | `1.1.8` | `1.2.0` |
| [aws-runtime](https://github.com/smithy-lang/smithy-rs) | `1.1.8` | `1.1.9` |
| [aws-sdk-sso](https://github.com/awslabs/aws-sdk-rust) | `1.18.0` | `1.19.0` |
| [aws-sdk-ssooidc](https://github.com/awslabs/aws-sdk-rust) | `1.18.0` | `1.19.0` |
| [aws-sdk-sts](https://github.com/awslabs/aws-sdk-rust) | `1.18.0` | `1.19.0` |
| [aws-smithy-runtime](https://github.com/smithy-lang/smithy-rs) | `1.2.1` | `1.3.0` |
| [aws-types](https://github.com/smithy-lang/smithy-rs) | `1.1.8` | `1.1.9` |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.15.4` | `3.16.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.91` | `1.0.94` |
| [either](https://github.com/rayon-rs/either) | `1.10.0` | `1.11.0` |
| [encoding_rs](https://github.com/hsivonen/encoding_rs) | `0.8.33` | `0.8.34` |
| [event-listener](https://github.com/smol-rs/event-listener) | `2.5.3` | `4.0.3` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.13` | `0.2.14` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.79` | `1.0.80` |
| [quote](https://github.com/dtolnay/quote) | `1.0.35` | `1.0.36` |
| [rstest_macros](https://github.com/la10736/rstest) | `0.18.2` | `0.19.0` |
| [syn](https://github.com/dtolnay/syn) | `2.0.58` | `2.0.59` |
| [time-macros](https://github.com/time-rs/time) | `0.2.17` | `0.2.18` |


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

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

Updates `aws-config` from 1.1.9 to 1.1.10
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `aws-sdk-s3` from 1.21.0 to 1.22.0
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

Updates `aws-smithy-runtime-api` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `moka` from 0.12.5 to 0.12.6
- [Changelog](https://github.com/moka-rs/moka/blob/main/CHANGELOG.md)
- [Commits](moka-rs/moka@v0.12.5...v0.12.6)

Updates `reqwest-middleware` from 0.2.5 to 0.3.0
- [Release notes](https://github.com/TrueLayer/reqwest-middleware/releases)
- [Changelog](https://github.com/TrueLayer/reqwest-middleware/blob/main/CHANGELOG.md)
- [Commits](https://github.com/TrueLayer/reqwest-middleware/commits/reqwest-middleware-v0.3.0)

Updates `time` from 0.3.34 to 0.3.36
- [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.34...v0.3.36)

Updates `rstest` from 0.18.2 to 0.19.0
- [Release notes](https://github.com/la10736/rstest/releases)
- [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md)
- [Commits](la10736/rstest@v0.18.2...v0.19.0)

Updates `allocator-api2` from 0.2.16 to 0.2.18
- [Changelog](https://github.com/zakarumych/allocator-api2/blob/main/CHANGELOG.md)
- [Commits](zakarumych/allocator-api2@v0.2.16...v0.2.18)

Updates `async-lock` from 2.8.0 to 3.3.0
- [Release notes](https://github.com/smol-rs/async-lock/releases)
- [Changelog](https://github.com/smol-rs/async-lock/blob/master/CHANGELOG.md)
- [Commits](smol-rs/async-lock@v2.8.0...v3.3.0)

Updates `aws-credential-types` from 1.1.8 to 1.2.0
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `aws-runtime` from 1.1.8 to 1.1.9
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `aws-sdk-sso` from 1.18.0 to 1.19.0
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

Updates `aws-sdk-ssooidc` from 1.18.0 to 1.19.0
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

Updates `aws-sdk-sts` from 1.18.0 to 1.19.0
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

Updates `aws-smithy-runtime` from 1.2.1 to 1.3.0
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `aws-types` from 1.1.8 to 1.1.9
- [Release notes](https://github.com/smithy-lang/smithy-rs/releases)
- [Changelog](https://github.com/smithy-lang/smithy-rs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/smithy-lang/smithy-rs/commits)

Updates `bumpalo` from 3.15.4 to 3.16.0
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](fitzgen/bumpalo@3.15.4...3.16.0)

Updates `cc` from 1.0.91 to 1.0.94
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Commits](rust-lang/cc-rs@1.0.91...1.0.94)

Updates `either` from 1.10.0 to 1.11.0
- [Commits](rayon-rs/either@1.10.0...1.11.0)

Updates `encoding_rs` from 0.8.33 to 0.8.34
- [Commits](hsivonen/encoding_rs@v0.8.33...v0.8.34)

Updates `event-listener` from 2.5.3 to 4.0.3
- [Release notes](https://github.com/smol-rs/event-listener/releases)
- [Changelog](https://github.com/smol-rs/event-listener/blob/master/CHANGELOG.md)
- [Commits](smol-rs/event-listener@v2.5.3...v4.0.3)

Updates `getrandom` from 0.2.13 to 0.2.14
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.13...v0.2.14)

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

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

Updates `rstest_macros` from 0.18.2 to 0.19.0
- [Release notes](https://github.com/la10736/rstest/releases)
- [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md)
- [Commits](la10736/rstest@v0.18.2...v0.19.0)

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

Updates `time-macros` from 0.2.17 to 0.2.18
- [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.17...v0.2.18)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: async-trait
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: aws-config
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: aws-sdk-s3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: aws-smithy-runtime-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: moka
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: reqwest-middleware
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: time
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: rstest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: allocator-api2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: async-lock
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: aws-credential-types
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: aws-runtime
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: aws-sdk-sso
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: aws-sdk-ssooidc
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: aws-sdk-sts
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: aws-smithy-runtime
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: aws-types
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: bumpalo
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: either
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: encoding_rs
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: event-listener
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: deps
- dependency-name: getrandom
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: proc-macro2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: quote
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: rstest_macros
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: syn
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: time-macros
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added d:cargo Update a Cargo (Rust) dependency dependencies Add, remove, or update one or more dependencies skip deployment Do not deploy this PR upon merge labels Apr 15, 2024
@jwodder
Copy link
Member

jwodder commented Apr 15, 2024

@dependabot unignore reqwest

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 15, 2024

OK, I will stop ignoring the reqwest dependency.

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 15, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 15, 2024
@dependabot dependabot bot deleted the dependabot/cargo/deps-91065de50d branch April 15, 2024 12:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
d:cargo Update a Cargo (Rust) dependency dependencies Add, remove, or update one or more dependencies skip deployment Do not deploy this PR upon merge
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant