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 across 1 directory with 55 updates #131

Merged
merged 1 commit into from
May 20, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 20, 2024

Bumps the deps group with 46 updates in the / directory:

Package From To
anyhow 1.0.82 1.0.86
aws-config 1.2.0 1.2.1
aws-smithy-runtime-api 1.4.0 1.5.0
itertools 0.12.1 0.13.0
reqwest-middleware 0.3.0 0.3.1
serde 1.0.198 1.0.202
serde_json 1.0.116 1.0.117
thiserror 1.0.59 1.0.61
anstyle 1.0.6 1.0.7
autocfg 1.2.0 1.3.0
aws-sigv4 1.2.0 1.2.1
aws-smithy-runtime 1.3.1 1.4.0
aws-smithy-types 1.1.8 1.1.9
cc 1.0.95 1.0.98
concurrent-queue 2.4.0 2.5.0
crossbeam-channel 0.5.12 0.5.13
crossbeam-utils 0.8.19 0.8.20
either 1.11.0 1.12.0
errno 0.3.8 0.3.9
fastrand 2.0.2 2.1.0
hashbrown 0.14.3 0.14.5
libc 0.2.153 0.2.155
linux-raw-sys 0.4.13 0.4.14
lock_api 0.4.11 0.4.12
miniz_oxide 0.7.2 0.7.3
num-traits 0.2.18 0.2.19
parking_lot 0.12.1 0.12.2
parking_lot_core 0.9.9 0.9.10
pest 2.7.9 2.7.10
pest_derive 2.7.9 2.7.10
proc-macro2 1.0.81 1.0.83
raw-cpuid 11.0.1 11.0.2
relative-path 1.9.2 1.9.3
rustc-demangle 0.1.23 0.1.24
rustix 0.38.33 0.38.34
rustls 0.21.11 0.21.12
rustls-pki-types 1.4.1 1.7.0
rustversion 1.0.15 1.0.17
ryu 1.0.17 1.0.18
security-framework-sys 2.10.0 2.11.0
semver 1.0.22 1.0.23
socket2 0.5.6 0.5.7
syn 2.0.60 2.0.65
tokio-util 0.7.10 0.7.11
winapi-util 0.1.6 0.1.8
zerocopy 0.7.32 0.7.34

Updates anyhow from 1.0.82 to 1.0.86

Release notes

Sourced from anyhow's releases.

1.0.86

  • Fix parse error in ensure! with non-literal after minus sign (#373)

1.0.85

  • Improve ensure! macro's rules to unblock some rustc pretty-printer improvements (#368, #371)

1.0.84

  • Disallow calling ensure! through a Not impl for a type that is not bool (#367)

1.0.83

  • Integrate compile-time checking of cfgs (#363)
Commits
  • 8ea1819 Release 1.0.86
  • 0a1b405 Merge pull request #373 from dtolnay/minusneg
  • e0c74f2 Ensure $:literal never matches negative literal
  • 013c66e Fix parse error with non-literal after minus sign
  • ca7aff7 Add binary operator ensure tests
  • 2737bbe Release 1.0.85
  • 82b8b34 Merge pull request #371 from dtolnay/split
  • ad78d70 Preserve more token spans in expression parser
  • 5cce406 Parse comparison operators before other binary operators
  • 7205394 Merge pull request #369 from dtolnay/tokensplit
  • Additional commits viewable in compare view

Updates aws-config from 1.2.0 to 1.2.1

Commits

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

Commits

Updates itertools from 0.12.1 to 0.13.0

Changelog

Sourced from itertools's changelog.

0.13.0

Breaking

  • Removed implementation of DoubleEndedIterator for ConsTuples (#853)
  • Made MultiProduct fused and fixed on an empty iterator (#835, #834)
  • Changed iproduct! to return tuples for maxi one iterator too (#870)
  • Changed PutBack::put_back to return the old value (#880)
  • Removed deprecated repeat_call, Itertools::{foreach, step, map_results, fold_results} (#878)
  • Removed TakeWhileInclusive::new (#912)

Added

  • Added Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key} (#654, #885)
  • Added Itertools::tail (#899)
  • Implemented DoubleEndedIterator for ProcessResults (#910)
  • Implemented Debug for FormatWith (#931)
  • Added Itertools::get (#891)

Changed

  • Deprecated Itertools::group_by (renamed chunk_by) (#866, #879)
  • Deprecated unfold (use std::iter::from_fn instead) (#871)
  • Optimized GroupingMapBy (#873, #876)
  • Relaxed Fn bounds to FnMut in diff_with, Itertools::into_group_map_by (#886)
  • Relaxed Debug/Clone bounds for MapInto (#889)
  • Documented the use_alloc feature (#887)
  • Optimized Itertools::set_from (#888)
  • Removed badges in README.md (#890)
  • Added "no-std" categories in Cargo.toml (#894)
  • Fixed Itertools::k_smallest on short unfused iterators (#900)
  • Deprecated Itertools::tree_fold1 (renamed tree_reduce) (#895)
  • Deprecated GroupingMap::fold_first (renamed reduce) (#902)
  • Fixed Itertools::k_smallest(0) to consume the iterator, optimized Itertools::k_smallest(1) (#909)
  • Specialized Combinations::nth (#914)
  • Specialized MergeBy::fold (#920)
  • Specialized CombinationsWithReplacement::nth (#923)
  • Specialized FlattenOk::{fold, rfold} (#927)
  • Specialized Powerset::nth (#924)
  • Documentation fixes (#882, #936)
  • Fixed assert_equal for iterators longer than i32::MAX (#932)
  • Updated the must_use message of non-lazy KMergeBy and TupleCombinations (#939)

Notable Internal Changes

  • Tested iterator laziness (#792)
  • Created CONTRIBUTING.md (#767)
Commits
  • d5084d1 Prepare v0.13.0 release (#937)
  • d7c99d5 TupleCombinations is not lazy but must be used nonetheless
  • 074c7fc KMergeBy is not lazy but must be used nonetheless
  • 2ad9e07 assert_equal: fix clippy::default_numeric_fallback
  • 0d4efc8 Remove free function get
  • 05cc0ee get(s..=usize::MAX) should be fine when s != 0
  • 3c16f14 get: when is it ESI and/or DEI
  • 4dd6ba0 get: panics if the range includes usize::MAX
  • 7a9ce56 get(r: Range) as Skip\<Take>
  • f676f2f Remove the unspecified check about .get(exhausted_range_inclusive)
  • Additional commits viewable in compare view

Updates reqwest-middleware from 0.3.0 to 0.3.1

Changelog

Sourced from reqwest-middleware's changelog.

[0.3.1]

Fixed

  • Included license files in crates
  • Fix logging of User-Agent header in reqwest-tracing

Added

  • Added with_retry_log_level to RetryTransientMiddleware in reqwest-retry
  • Added ClientBuilder::from_client
Commits

Updates serde from 1.0.198 to 1.0.202

Release notes

Sourced from serde's releases.

v1.0.202

  • Provide public access to RenameAllRules in serde_derive_internals (#2743)

v1.0.201

  • Resolve unexpected_cfgs warning (#2737)

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)

v1.0.199

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#2732, thanks @​aatifsyed)
Commits
  • 9e32a40 Release 1.0.202
  • 87f635e Release serde_derive_internals 0.29.1
  • d4b2dfb Merge pull request #2743 from dtolnay/renameallrules
  • f6ab0bc Provide public access to RenameAllRules in serde_derive_internals
  • 48cc2a6 Replace use of a syn From impl
  • 3202a68 Skip rerunning build script on library code changes
  • b4f1bc1 Release 1.0.201
  • 029ab46 Merge pull request #2737 from dtolnay/checkcfg
  • 220ca0c Resolve unexpected_cfgs warning
  • 20306f4 Fix cfg on test_systemtime_overflow
  • Additional commits viewable in compare view

Updates serde_json from 1.0.116 to 1.0.117

Release notes

Sourced from serde_json's releases.

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)
Commits

Updates thiserror from 1.0.59 to 1.0.61

Release notes

Sourced from thiserror's releases.

1.0.61

  • Use core::fmt and core::panic to facilitate error_in_core support (#299, thanks @​jordens)

1.0.60

  • Resolve unexpected_cfgs warning (#298)
Commits

Updates anstyle from 1.0.6 to 1.0.7

Commits

Updates autocfg from 1.2.0 to 1.3.0

Commits

Updates aws-sdk-sso from 1.20.0 to 1.21.0

Commits

Updates aws-sdk-ssooidc from 1.20.0 to 1.21.0

Commits

Updates aws-sdk-sts from 1.20.0 to 1.21.0

Commits

Updates aws-sigv4 from 1.2.0 to 1.2.1

Commits

Updates aws-smithy-runtime from 1.3.1 to 1.4.0

Commits

Updates aws-smithy-types from 1.1.8 to 1.1.9

Commits

Updates cc from 1.0.95 to 1.0.98

Release notes

Sourced from cc's releases.

1.0.98

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.97...1.0.98

1.0.97

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.96...1.0.97

1.0.96

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.95...1.0.96

Commits

Updates concurrent-queue from 2.4.0 to 2.5.0

Release notes

Sourced from concurrent-queue's releases.

v2.5.0

  • Add a force_push method that can be used to add an element to the queue by displacing another. (#58)
  • Make ConcurrentQueue::unbounded() into a const function. (#67)
  • Fix a compilation error in the Loom implementation. (#65)
Changelog

Sourced from concurrent-queue's changelog.

Version 2.5.0

  • Add a force_push method that can be used to add an element to the queue by displacing another. (#58)
  • Make ConcurrentQueue::unbounded() into a const function. (#67)
  • Fix a compilation error in the Loom implementation. (#65)
Commits
  • e874f70 v2.5.0
  • 5b74dc8 Merge fetch_and andthe prev_value check
  • 05e7bff tests: Add more tests for force_push
  • 576965a tests: Move test to bounded.rs
  • 89a64f8 feat: Make unbounded a const function
  • 59e93fc ci: Test loom under no-default-features
  • c407467 feat: Add an overflow push method
  • ff53a68 ci: Add loom test to CI
  • d494533 Remove dead code
  • 93ee058 Migrate to Rust 2021
  • Additional commits viewable in compare view

Updates crossbeam-channel from 0.5.12 to 0.5.13

Release notes

Sourced from crossbeam-channel's releases.

crossbeam-channel 0.5.13

  • Add select_biased! macro. (#1040)
Commits
  • 3f5d51f Prepare for the next release
  • a9d236c Use setup-cross-toolchain-action instead of cross
  • 4a514f4 Address unexpected_cfgs warning
  • 91edb88 Add select_biased! macro (#1040)
  • d1ab079 Fix clippy::assigning_clones warning
  • 3045680 ci: Set timeout-minutes in all jobs
  • 1dc72c8 Revert "ci: Pin nightly toolchain for sanitizers to nightly-2024-03-13"
  • 39417a5 ci: Use taiki-e/checkout-action action
  • 120a6dd Run cargo-careful in CI
  • 2b06585 impl Display for CachePadded<T> (#1097)
  • Additional commits viewable in compare view

Updates crossbeam-utils from 0.8.19 to 0.8.20

Release notes

Sourced from crossbeam-utils's releases.

crossbeam-utils 0.8.20

  • Implement Display for CachePadded. (#1097)
Commits
  • 3f5d51f Prepare for the next release
  • a9d236c Use setup-cross-toolchain-action instead of cross
  • 4a514f4 Address unexpected_cfgs warning
  • 91edb88 Add select_biased! macro (#1040)
  • d1ab079 Fix clippy::assigning_clones warning
  • 3045680 ci: Set timeout-minutes in all jobs
  • 1dc72c8 Revert "ci: Pin nightly toolchain for sanitizers to nightly-2024-03-13"
  • 39417a5 ci: Use taiki-e/checkout-action action
  • 120a6dd Run cargo-careful in CI
  • 2b06585 impl Display for CachePadded<T> (#1097)
  • Additional commits viewable in compare view

Updates either from 1.11.0 to 1.12.0

Commits

Updates errno from 0.3.8 to 0.3.9

Changelog

Sourced from errno's changelog.

[0.3.9] - 2024-05-07

  • Add visionOS support #95
Commits

Updates fastrand from 2.0.2 to 2.1.0

Release notes

Sourced from fastrand's releases.

v2.1.0

  • Change the RNG algorithm and the way that the seed is computed. This will cause the algorithm to emit different constants for different seeds, hence the minor SemVer change.
    • Update to the final WyRand v4.2 constants for better entropy. (#82)
    • Remove an unnecessary seed modification. (#73)
Changelog

Sourced from fastrand's changelog.

Version 2.1.0

  • Change the RNG algorithm and the way that the seed is computed. This will cause the algorithm to emit different constants for different seeds, hence the minor SemVer change.
    • Update to the final WyRand v4.2 constants for better entropy. (#82)
    • Remove an unnecessary seed modification. (#73)
Commits

Updates hashbrown from 0.14.3 to 0.14.5

Changelog

Sourced from hashbrown's changelog.

[v0.14.5] - 2024-04-28

Fixed

  • Fixed index calculation in panic guard of clone_from_impl. (#511)

[v0.14.4] - 2024-03-19

This release was yanked due to a breaking change.

Commits
  • 025d0f5 Bump version number in Cargo.toml to 0.14.5
  • 8971805 Revert "Make HashSet::insert return OccupiedEntry"
  • 250040a Auto merge of #521 - Amanieu:release-0.14.5, r=Amanieu
  • 232df8c Adjust Github CI since macos-latest is now AArch64
  • adae598 Reapply "Make HashSet::insert return OccupiedEntry"
  • 47ef09f Release v0.14.5
  • 3de77e8 Revert "Make HashSet::insert return OccupiedEntry"
  • 97c2140 Auto merge of #516 - JohnEndson:master, r=Amanieu
  • 1833798 Fix some comments
  • 3741813 Auto merge of #512 - Amanieu:release-0.14.4, r=Amanieu
  • Additional commits viewable in compare view

Updates libc from 0.2.153 to 0.2.155

Release notes

Sourced from libc's releases.

0.2.155

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.154...0.2.155

0.2.154

What's Changed

New Contributors

Full Changelog: rust-lang/libc@0.2.153...0.2.154

Commits
  • 7df63bd Merge pull request #3682 from madsmtm/new-version
  • 0bbb5cd Merge pull request #3690 from tesuji/android-posix-spawn
  • 15c74a4 Update version to 0.2.155
  • 664947b Merge pull request #3708 from cuviper/ci-sparc64-0.2
  • 61331df Also skip MFD_EXEC and MFD_NOEXEC_SEAL on sparc64
  • 73d2004 Skip SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV on sparc64
  • 80535f3 Revert "Upgrade Docker images to Ubuntu 23.10" on sparc64
  • b2b2fd7 Readd posix_spawn{_file_actions_t,attr_t} on Android
  • 7646277 Merge pull request #3686 from redox-os/redox-epoll-0.2
  • 5eff703 redox: correct EPOLL constants
  • Additional commits viewable in compare view

Updates linux-raw-sys from 0.4.13 to 0.4.14

Commits

Updates lock_api from 0.4.11 to 0.4.12

Changelog

Sourced from lock_api's changelog.

parking_lot 0.12.2, parking_lot_core 0.9.10, lock_api 0.4.12 (2024-04-15)

  • Fixed panic when calling with_upgraded twice on a ArcRwLockUpgradableReadGuard (#431)
  • Fixed RwLockUpgradeableReadGuard::with_upgraded
  • Added lock_api::{Mutex, ReentrantMutex, RwLock}::from_raw methods (#429)
  • Added Apple visionOS support (

Bumps the deps group with 46 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.82` | `1.0.86` |
| [aws-config](https://github.com/smithy-lang/smithy-rs) | `1.2.0` | `1.2.1` |
| [aws-smithy-runtime-api](https://github.com/smithy-lang/smithy-rs) | `1.4.0` | `1.5.0` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.12.1` | `0.13.0` |
| [reqwest-middleware](https://github.com/TrueLayer/reqwest-middleware) | `0.3.0` | `0.3.1` |
| [serde](https://github.com/serde-rs/serde) | `1.0.198` | `1.0.202` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.116` | `1.0.117` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.59` | `1.0.61` |
| [anstyle](https://github.com/rust-cli/anstyle) | `1.0.6` | `1.0.7` |
| [autocfg](https://github.com/cuviper/autocfg) | `1.2.0` | `1.3.0` |
| [aws-sigv4](https://github.com/smithy-lang/smithy-rs) | `1.2.0` | `1.2.1` |
| [aws-smithy-runtime](https://github.com/smithy-lang/smithy-rs) | `1.3.1` | `1.4.0` |
| [aws-smithy-types](https://github.com/smithy-lang/smithy-rs) | `1.1.8` | `1.1.9` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.0.95` | `1.0.98` |
| [concurrent-queue](https://github.com/smol-rs/concurrent-queue) | `2.4.0` | `2.5.0` |
| [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) | `0.5.12` | `0.5.13` |
| [crossbeam-utils](https://github.com/crossbeam-rs/crossbeam) | `0.8.19` | `0.8.20` |
| [either](https://github.com/rayon-rs/either) | `1.11.0` | `1.12.0` |
| [errno](https://github.com/lambda-fairy/rust-errno) | `0.3.8` | `0.3.9` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.0.2` | `2.1.0` |
| [hashbrown](https://github.com/rust-lang/hashbrown) | `0.14.3` | `0.14.5` |
| [libc](https://github.com/rust-lang/libc) | `0.2.153` | `0.2.155` |
| [linux-raw-sys](https://github.com/sunfishcode/linux-raw-sys) | `0.4.13` | `0.4.14` |
| [lock_api](https://github.com/Amanieu/parking_lot) | `0.4.11` | `0.4.12` |
| [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.7.2` | `0.7.3` |
| [num-traits](https://github.com/rust-num/num-traits) | `0.2.18` | `0.2.19` |
| [parking_lot](https://github.com/Amanieu/parking_lot) | `0.12.1` | `0.12.2` |
| [parking_lot_core](https://github.com/Amanieu/parking_lot) | `0.9.9` | `0.9.10` |
| [pest](https://github.com/pest-parser/pest) | `2.7.9` | `2.7.10` |
| [pest_derive](https://github.com/pest-parser/pest) | `2.7.9` | `2.7.10` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.81` | `1.0.83` |
| [raw-cpuid](https://github.com/gz/rust-cpuid) | `11.0.1` | `11.0.2` |
| [relative-path](https://github.com/udoprog/relative-path) | `1.9.2` | `1.9.3` |
| [rustc-demangle](https://github.com/rust-lang/rustc-demangle) | `0.1.23` | `0.1.24` |
| [rustix](https://github.com/bytecodealliance/rustix) | `0.38.33` | `0.38.34` |
| [rustls](https://github.com/rustls/rustls) | `0.21.11` | `0.21.12` |
| [rustls-pki-types](https://github.com/rustls/pki-types) | `1.4.1` | `1.7.0` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.15` | `1.0.17` |
| [ryu](https://github.com/dtolnay/ryu) | `1.0.17` | `1.0.18` |
| [security-framework-sys](https://github.com/kornelski/rust-security-framework) | `2.10.0` | `2.11.0` |
| [semver](https://github.com/dtolnay/semver) | `1.0.22` | `1.0.23` |
| [socket2](https://github.com/rust-lang/socket2) | `0.5.6` | `0.5.7` |
| [syn](https://github.com/dtolnay/syn) | `2.0.60` | `2.0.65` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.10` | `0.7.11` |
| [winapi-util](https://github.com/BurntSushi/winapi-util) | `0.1.6` | `0.1.8` |
| [zerocopy](https://github.com/google/zerocopy) | `0.7.32` | `0.7.34` |



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

Updates `aws-config` from 1.2.0 to 1.2.1
- [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-smithy-runtime-api` from 1.4.0 to 1.5.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 `itertools` from 0.12.1 to 0.13.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.12.1...v0.13.0)

Updates `reqwest-middleware` from 0.3.0 to 0.3.1
- [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)

Updates `serde` from 1.0.198 to 1.0.202
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.198...v1.0.202)

Updates `serde_json` from 1.0.116 to 1.0.117
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.116...v1.0.117)

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

Updates `anstyle` from 1.0.6 to 1.0.7
- [Commits](rust-cli/anstyle@v1.0.6...v1.0.7)

Updates `autocfg` from 1.2.0 to 1.3.0
- [Commits](cuviper/autocfg@1.2.0...1.3.0)

Updates `aws-sdk-sso` from 1.20.0 to 1.21.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.20.0 to 1.21.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.20.0 to 1.21.0
- [Release notes](https://github.com/awslabs/aws-sdk-rust/releases)
- [Commits](https://github.com/awslabs/aws-sdk-rust/commits)

Updates `aws-sigv4` from 1.2.0 to 1.2.1
- [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-smithy-runtime` from 1.3.1 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 `aws-smithy-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 `cc` from 1.0.95 to 1.0.98
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Commits](rust-lang/cc-rs@1.0.95...1.0.98)

Updates `concurrent-queue` from 2.4.0 to 2.5.0
- [Release notes](https://github.com/smol-rs/concurrent-queue/releases)
- [Changelog](https://github.com/smol-rs/concurrent-queue/blob/master/CHANGELOG.md)
- [Commits](smol-rs/concurrent-queue@v2.4.0...v2.5.0)

Updates `crossbeam-channel` from 0.5.12 to 0.5.13
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-channel-0.5.12...crossbeam-channel-0.5.13)

Updates `crossbeam-utils` from 0.8.19 to 0.8.20
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-utils-0.8.19...crossbeam-utils-0.8.20)

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

Updates `errno` from 0.3.8 to 0.3.9
- [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md)
- [Commits](https://github.com/lambda-fairy/rust-errno/commits)

Updates `fastrand` from 2.0.2 to 2.1.0
- [Release notes](https://github.com/smol-rs/fastrand/releases)
- [Changelog](https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md)
- [Commits](smol-rs/fastrand@v2.0.2...v2.1.0)

Updates `hashbrown` from 0.14.3 to 0.14.5
- [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md)
- [Commits](rust-lang/hashbrown@v0.14.3...v0.14.5)

Updates `libc` from 0.2.153 to 0.2.155
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](rust-lang/libc@0.2.153...0.2.155)

Updates `linux-raw-sys` from 0.4.13 to 0.4.14
- [Commits](sunfishcode/linux-raw-sys@v0.4.13...v0.4.14)

Updates `lock_api` from 0.4.11 to 0.4.12
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md)
- [Commits](Amanieu/parking_lot@lock_api-0.4.11...lock_api-0.4.12)

Updates `miniz_oxide` from 0.7.2 to 0.7.3
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](Frommi/miniz_oxide@0.7.2...0.7.3)

Updates `num-traits` from 0.2.18 to 0.2.19
- [Changelog](https://github.com/rust-num/num-traits/blob/master/RELEASES.md)
- [Commits](rust-num/num-traits@num-traits-0.2.18...num-traits-0.2.19)

Updates `parking_lot` from 0.12.1 to 0.12.2
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md)
- [Commits](Amanieu/parking_lot@0.12.1...0.12.2)

Updates `parking_lot_core` from 0.9.9 to 0.9.10
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md)
- [Commits](Amanieu/parking_lot@core-0.9.9...core-0.9.10)

Updates `pest` from 2.7.9 to 2.7.10
- [Release notes](https://github.com/pest-parser/pest/releases)
- [Commits](pest-parser/pest@v2.7.9...v2.7.10)

Updates `pest_derive` from 2.7.9 to 2.7.10
- [Release notes](https://github.com/pest-parser/pest/releases)
- [Commits](pest-parser/pest@v2.7.9...v2.7.10)

Updates `pest_generator` from 2.7.9 to 2.7.10
- [Release notes](https://github.com/pest-parser/pest/releases)
- [Commits](pest-parser/pest@v2.7.9...v2.7.10)

Updates `pest_meta` from 2.7.9 to 2.7.10
- [Release notes](https://github.com/pest-parser/pest/releases)
- [Commits](pest-parser/pest@v2.7.9...v2.7.10)

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

Updates `raw-cpuid` from 11.0.1 to 11.0.2
- [Changelog](https://github.com/gz/rust-cpuid/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gz/rust-cpuid/commits)

Updates `redox_syscall` from 0.4.1 to 0.5.1

Updates `relative-path` from 1.9.2 to 1.9.3
- [Release notes](https://github.com/udoprog/relative-path/releases)
- [Commits](https://github.com/udoprog/relative-path/commits/1.9.3)

Updates `rustc-demangle` from 0.1.23 to 0.1.24
- [Commits](rust-lang/rustc-demangle@0.1.23...0.1.24)

Updates `rustix` from 0.38.33 to 0.38.34
- [Release notes](https://github.com/bytecodealliance/rustix/releases)
- [Commits](bytecodealliance/rustix@v0.38.33...v0.38.34)

Updates `rustls` from 0.21.11 to 0.21.12
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.21.11...v/0.21.12)

Updates `rustls-pki-types` from 1.4.1 to 1.7.0
- [Release notes](https://github.com/rustls/pki-types/releases)
- [Commits](rustls/pki-types@v/1.4.1...v/1.7.0)

Updates `rustversion` from 1.0.15 to 1.0.17
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.15...1.0.17)

Updates `ryu` from 1.0.17 to 1.0.18
- [Release notes](https://github.com/dtolnay/ryu/releases)
- [Commits](dtolnay/ryu@1.0.17...1.0.18)

Updates `security-framework-sys` from 2.10.0 to 2.11.0
- [Release notes](https://github.com/kornelski/rust-security-framework/releases)
- [Commits](kornelski/rust-security-framework@v2.10.0...v2.11.0)

Updates `semver` from 1.0.22 to 1.0.23
- [Release notes](https://github.com/dtolnay/semver/releases)
- [Commits](dtolnay/semver@1.0.22...1.0.23)

Updates `serde_derive` from 1.0.198 to 1.0.202
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.198...v1.0.202)

Updates `socket2` from 0.5.6 to 0.5.7
- [Release notes](https://github.com/rust-lang/socket2/releases)
- [Changelog](https://github.com/rust-lang/socket2/blob/master/CHANGELOG.md)
- [Commits](rust-lang/socket2@v0.5.6...v0.5.7)

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

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

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

Updates `winapi-util` from 0.1.6 to 0.1.8
- [Commits](BurntSushi/winapi-util@0.1.6...0.1.8)

Updates `zerocopy` from 0.7.32 to 0.7.34
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.7.32...v0.7.34)

Updates `zerocopy-derive` from 0.7.32 to 0.7.34
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.7.32...v0.7.34)

---
updated-dependencies:
- dependency-name: anyhow
  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-smithy-runtime-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: reqwest-middleware
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: anstyle
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: autocfg
  dependency-type: indirect
  update-type: version-update:semver-minor
  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-sigv4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: aws-smithy-runtime
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: aws-smithy-types
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: concurrent-queue
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: crossbeam-channel
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: crossbeam-utils
  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: errno
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: fastrand
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: hashbrown
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: linux-raw-sys
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: lock_api
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: miniz_oxide
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: num-traits
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: parking_lot
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: parking_lot_core
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: pest
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: pest_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: pest_generator
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: pest_meta
  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: raw-cpuid
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: redox_syscall
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: relative-path
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: rustc-demangle
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: rustix
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: rustls
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: rustls-pki-types
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: rustversion
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: ryu
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: security-framework-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: semver
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: socket2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: syn
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: thiserror-impl
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: tokio-util
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: winapi-util
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: zerocopy
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: zerocopy-derive
  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 May 20, 2024
Copy link

codecov bot commented May 20, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 46.93%. Comparing base (a177305) to head (a592789).

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #131      +/-   ##
==========================================
+ Coverage   45.71%   46.93%   +1.22%     
==========================================
  Files          24       24              
  Lines        3614     3520      -94     
==========================================
  Hits         1652     1652              
+ Misses       1962     1868      -94     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@jwodder jwodder merged commit e57d7d3 into main May 20, 2024
10 checks passed
@jwodder jwodder deleted the dependabot/cargo/deps-df06bbcd00 branch May 20, 2024 12:18
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