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 24 updates #183

Merged
merged 2 commits into from
Aug 19, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 19, 2024

Bumps the deps group with 24 updates:

Package From To
clap 4.5.15 4.5.16
serde 1.0.206 1.0.208
serde_json 1.0.124 1.0.125
tokio 1.39.2 1.39.3
tower 0.4.13 0.5.0
aws-smithy-runtime 1.6.2 1.6.3
aws-smithy-types 1.2.0 1.2.2
cc 1.1.10 1.1.13
cpufeatures 0.2.12 0.2.13
indexmap 2.3.0 2.4.0
js-sys 0.3.69 0.3.70
libc 0.2.155 0.2.158
mio 1.0.1 1.0.2
serde_derive 1.0.206 1.0.208
syn 2.0.74 2.0.75
tower-layer 0.3.2 0.3.3
tower-service 0.3.2 0.3.3
wasm-bindgen 0.2.92 0.2.93
wasm-bindgen-backend 0.2.92 0.2.93
wasm-bindgen-futures 0.4.42 0.4.43
wasm-bindgen-macro 0.2.92 0.2.93
wasm-bindgen-macro-support 0.2.92 0.2.93
wasm-bindgen-shared 0.2.92 0.2.93
web-sys 0.3.69 0.3.70

Updates clap from 4.5.15 to 4.5.16

Release notes

Sourced from clap's releases.

v4.5.16

[4.5.16] - 2024-08-15

Fixes

  • (derive) Improve error messages when derive feature is missing
Changelog

Sourced from clap's changelog.

[4.5.16] - 2024-08-15

Fixes

  • (derive) Improve error messages when derive feature is missing
Commits

Updates serde from 1.0.206 to 1.0.208

Release notes

Sourced from serde's releases.

v1.0.208

  • Support serializing and deserializing unit structs in a flatten field (#2802, thanks @​jonhoo)

v1.0.207

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#2795, thanks @​Mingun)
Commits
  • 026e91a Release 1.0.208
  • bfbedac Merge pull request #2802 from jonhoo/flatten-unit-struct
  • 4036ff8 Support (de-)serializing flattened unit struct
  • 1b4da41 Release 1.0.207
  • f61d452 Touch up PR 2795
  • f986609 Merge pull request #2795 from Mingun/has-flatten-rework
  • 77a6a9d Take into account only not skipped flatten fields when choose serialization form
  • 547d843 Remove dead code - serialize_struct_as_map always called when cattrs.has_flat...
  • 005cb84 Fail with an understandable message is number of fields for serialization is ...
  • fd5b5e9 Correctly calculate has_flatten attribute in all cases for deserialization
  • Additional commits viewable in compare view

Updates serde_json from 1.0.124 to 1.0.125

Release notes

Sourced from serde_json's releases.

1.0.125

  • Speed up \uXXXX parsing and improve handling of unpaired surrogates when deserializing to bytes (#1172, #1175, thanks @​purplesyringa)
Commits
  • 6130f9b Release 1.0.125
  • cc7a160 Touch up PR 1175
  • 0f942e5 Merge pull request 1175 from iex-rs/faster-backslash-u
  • d8921cd Merge pull request #1172 from iex-rs/faster-hex
  • b4bc643 Merge pull request #1176 from dtolnay/miriname
  • 94a2aad Improve job names for miri jobs
  • 8073fc1 Merge pull request #1174 from iex-rs/miri-on-ci
  • 96ae604 Correct WTF-8 parsing
  • 236cc82 Simplify unicode escape handling
  • 2f28d10 Use the same UTF-8/WTF-8 impl for surrogates
  • Additional commits viewable in compare view

Updates tokio from 1.39.2 to 1.39.3

Release notes

Sourced from tokio's releases.

Tokio v1.39.3

1.39.3 (August 17th, 2024)

This release fixes a regression where the unix socket api stopped accepting the abstract socket namespace. (#6772)

#6772: tokio-rs/tokio#6772

Commits

Updates tower from 0.4.13 to 0.5.0

Release notes

Sourced from tower's releases.

tower 0.5.0

Fixed

  • util: BoxService is now Sync (#702)

Changed

  • util: Removed deprecated ServiceExt::ready_and method and ReadyAnd future (#652)
  • retry: Breaking Change retry::Policy::retry now accepts &mut Req and &mut Res instead of the previous mutable versions. This increases the flexibility of the retry policy. To update, update your method signature to include mut for both parameters. (#584)
  • retry: Breaking Change Change Policy to accept &mut self (#681)
  • retry: Add generic backoff utilities (#685)
  • retry: Add Budget trait. This allows end-users to implement their own budget and bucket implementations. (#703)
  • reconnect: Breaking Change Remove unused generic parameter from Reconnect::new (#755)
  • ready-cache: Allow iteration over ready services (#700)
  • discover: Implement Clone for Change (#701)
  • util: Add a BoxCloneServiceLayer (#708)
  • rng: use a simpler random 2-sampler (#716)
  • filter: Derive Clone for AsyncFilterLayer (#731)
  • general: Update IndexMap (#741)
  • MSRV: Increase MSRV to 1.63.0 (#741)

#702: tower-rs/tower#702 #652: tower-rs/tower#652 #584: tower-rs/tower#584 #681: tower-rs/tower#681 #685: tower-rs/tower#685 #703: tower-rs/tower#703 #755: tower-rs/tower#755 #700: tower-rs/tower#700 #701: tower-rs/tower#701 #708: tower-rs/tower#708 #716: tower-rs/tower#716 #731: tower-rs/tower#731 #741: tower-rs/tower#741

Commits
  • fec9e55 tower-layer: drop versions from dev dependencies (#782)
  • 646804d chore: prepare to release tower-0.5.0, tower-layer-0.3.3, tower-service-0.3.3...
  • 7202cfe chore: fix a few typos (#780)
  • 85080a5 use workspace dependencies for tower (#778)
  • 88a7d3e fix warnings found when running check/doc commands (#779)
  • a6e98a7 chore: update GitHub Actions CI (#740)
  • 74e925d chore: fix spelling errors (#775)
  • 89ac74f feat: Make new functions const when possible (#760)
  • 032d17f ensure that re-exported symbols show feature label in root (#754)
  • 05a0a25 Upgrade to indexmap v2 (MSRV 1.63) (#741)
  • Additional commits viewable in compare view

Updates aws-smithy-runtime from 1.6.2 to 1.6.3

Commits

Updates aws-smithy-types from 1.2.0 to 1.2.2

Commits

Updates cc from 1.1.10 to 1.1.13

Release notes

Sourced from cc's releases.

cc-v1.1.13

Other

  • Fix detect family: should detect emscripten as clang, closes #1185 (#1186)

cc-v1.1.12

Other

cc-v1.1.11

Other

  • Add support for parsing shell encoded *FLAGS (#1181)
  • Replace vector of tuples with BTreeMap which already is sorted and free of duplicates (#1177)
Changelog

Sourced from cc's changelog.

1.1.13 - 2024-08-16

Other

  • Fix detect family: should detect emscripten as clang, closes #1185 (#1186)

1.1.12 - 2024-08-15

Other

1.1.11 - 2024-08-14

Other

  • Add support for parsing shell encoded *FLAGS (#1181)
  • Replace vector of tuples with BTreeMap which already is sorted and free of duplicates (#1177)
Commits

Updates cpufeatures from 0.2.12 to 0.2.13

Commits

Updates indexmap from 2.3.0 to 2.4.0

Changelog

Sourced from indexmap's changelog.

2.4.0

  • Added methods IndexMap::append and IndexSet::append, moving all items from one map or set into another, and leaving the original capacity for reuse.
Commits

Updates js-sys from 0.3.69 to 0.3.70

Commits

Updates libc from 0.2.155 to 0.2.158

Release notes

Sourced from libc's releases.

0.2.158

Other

0.2.157

Added

Fixed

Changed

0.2.156

Added

Fixed

Changed

Removed

Other

  • Update or remove CI tests that have been failing
Changelog

Sourced from libc's changelog.

0.2.158 - 2024-08-19

Other

0.2.157 - 2024-08-17

Added

Fixed

Changed

0.2.156 - 2024-08-15

Added

Fixed

Changed

Removed

... (truncated)

Commits
  • c809c58 Merge pull request #3857 from rust-lang/release-plz-2024-08-19T05-21-04Z
  • 0d28de5 Update CHANGELOG.md
  • 284bd9e chore: release
  • 2682681 Merge pull request #3856 from tgross35/backport-wasi-fix
  • 71440ab [wasi] Add use core::iter::Iterator;
  • 6637dbe Merge pull request #3830 from rust-lang/release-plz-2024-08-15T20-50-10Z
  • 51d81e3 Update CHANGELOG.md
  • 217b2ab chore: release
  • 6d2b8a0 Merge pull request #3852 from tgross35/backport-onion
  • 64ee9df Merge pull request #3851 from tgross35/backport-romaine
  • Additional commits viewable in compare view

Updates mio from 1.0.1 to 1.0.2

Changelog

Sourced from mio's changelog.

1.0.2

Commits

Updates serde_derive from 1.0.206 to 1.0.208

Release notes

Sourced from serde_derive's releases.

v1.0.208

  • Support serializing and deserializing unit structs in a flatten field (#2802, thanks @​jonhoo)

v1.0.207

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#2795, thanks @​Mingun)
Commits
  • 026e91a Release 1.0.208
  • bfbedac Merge pull request #2802 from jonhoo/flatten-unit-struct
  • 4036ff8 Support (de-)serializing flattened unit struct
  • 1b4da41 Release 1.0.207
  • f61d452 Touch up PR 2795
  • f986609 Merge pull request #2795 from Mingun/has-flatten-rework
  • 77a6a9d Take into account only not skipped flatten fields when choose serialization form
  • 547d843 Remove dead code - serialize_struct_as_map always called when cattrs.has_flat...
  • 005cb84 Fail with an understandable message is number of fields for serialization is ...
  • fd5b5e9 Correctly calculate has_flatten attribute in all cases for deserialization
  • Additional commits viewable in compare view

Updates syn from 2.0.74 to 2.0.75

Release notes

Sourced from syn's releases.

2.0.75

  • Automatically fill in missing turbofish when printing ExprPath and other paths in expression position (#1722)
Commits
  • d1746fe Release 2.0.75
  • b693682 Merge pull request #1722 from dtolnay/exprpath
  • e459ee7 Insert turbofish into paths in expression position
  • 3bb65aa Add mod-style printing for paths that cannot contain generic args
  • ae8c84a Handwrite ToTokens impl for Meta
  • 5dbfeae Name the expr_style argument at all call sites of path::parsing::qpath
  • See full diff in compare view

Updates tower-layer from 0.3.2 to 0.3.3

Release notes

Sourced from tower-layer's releases.

tower-layer 0.3.3

Added

  • builder,util: add convenience methods for boxing services (#616)
  • all: new functions const when possible (#760)

#616: tower-rs/tower#616 #760: tower-rs/tower#760

Commits
  • fec9e55 tower-layer: drop versions from dev dependencies (#782)
  • 646804d chore: prepare to release tower-0.5.0, tower-layer-0.3.3, tower-service-0.3.3...
  • 7202cfe chore: fix a few typos (#780)
  • 85080a5 use workspace dependencies for tower (#778)
  • 88a7d3e fix warnings found when running check/doc commands (#779)
  • a6e98a7 chore: update GitHub Actions CI (#740)
  • 74e925d chore: fix spelling errors (#775)
  • 89ac74f feat: Make new functions const when possible (#760)
  • 032d17f ensure that re-exported symbols show feature label in root (#754)
  • 05a0a25 Upgrade to indexmap v2 (MSRV 1.63) (#741)
  • Additional commits viewable in compare view

Updates tower-service from 0.3.2 to 0.3.3

Commits
  • 646804d chore: prepare to release tower-0.5.0, tower-layer-0.3.3, tower-service-0.3.3...
  • 7202cfe chore: fix a few typos (#780)
  • 85080a5 use workspace dependencies for tower (#778)
  • 88a7d3e fix warnings found when running check/doc commands (#779)
  • a6e98a7 chore: update GitHub Actions CI (#740)
  • 74e925d chore: fix spelling errors (#775)
  • 89ac74f feat: Make new functions const when possible (#760)
  • 032d17f ensure that re-exported symbols show feature label in root (#754)
  • 05a0a25 Upgrade to indexmap v2 (MSRV 1.63) (#741)
  • 7d723eb remove generic parameters from Reconnect::new (#755)
  • Additional commits viewable in compare view

Updates wasm-bindgen from 0.2.92 to 0.2.93

Changelog

Sourced from wasm-bindgen's changelog.

0.2.93

Released 2024-08-13

Added

  • Allow exporting functions named default. Throw error in wasm-bindgen-cli if --target web and an exported symbol is named default. #3930

  • Added support for arbitrary expressions when using #[wasm_bindgen(typescript_custom_section)]. #3901

  • Implement From<NonNull<T>> for JsValue. #3877

  • Add method copy_within for TypedArray, add methods find_last,find_last_index for Array. #3888

  • Added support for returning Vecs from async functions. #3630

  • Added bindings for InputDeviceInfo and MediaTrackCapabilities. #3935

  • Add bindings for RTCRtpReceiver.getCapabilities(DOMString) method. #3941

  • Add bindings for VisualViewport. #3931

  • Add bindings for queueMicrotask. #3981

  • Add experimental bindings for User Agent Client Hints API #3989

  • Add bindings for FocusOptions. #3996

  • Add bindings for RTCRtpReceiver.jitterBufferTarget. #3968

  • Generate getters for all WebIDL dictionary types. #3993

  • Support for iterable in WebIDL. Gives entries, keys, values methods for regular and asynchronous, as well as for_each for regular, iterables. #3962

  • Add bindings for HTMLTableCellElement.abbr and scope properties.

... (truncated)

Commits

Updates wasm-bindgen-backend from 0.2.92 to 0.2.93

Changelog

Sourced from wasm-bindgen-backend's changelog.

0.2.93

Released 2024-08-13

Added

  • Allow exporting functions named default. Throw error in wasm-bindgen-cli if --target web and an exported symbol is named default. #3930

  • Added support for arbitrary expressions when using #[wasm_bindgen(typescript_custom_section)]. #3901

  • Implement From<NonNull<T>> for JsValue. #3877

  • Add method copy_within for TypedArray, add methods find_last,find_last_index for Array. #3888

  • Added support for returning Vecs from async functions. #3630

  • Added bindings for InputDeviceInfo and MediaTrackCapabilities. #3935

  • Add bindings for RTCRtpReceiver.getCapabilities(DOMString) method. #3941

  • Add bindings for VisualViewport. #3931

  • Add bindings for queueMicrotask. #3981

  • Add experimental bindings for User Agent Client Hints API #3989

  • Add bindings for FocusOptions. #3996

  • Add bindings for RTCRtpReceiver.jitterBufferTarget. #3968

  • Generate getters for all WebIDL dictionary types. #3993

  • Support for iterable in WebIDL. Gives entries, keys, values methods for regular and asynchronous, as well as for_each for regular, iterables. #3962

  • Add bindings for HTMLTableCellElement.abbr and scope properties.

... (truncated)

Commits

Updates wasm-bindgen-futures from 0.4.42 to 0.4.43

Commits

Updates wasm-bindgen-macro from 0.2.92 to 0.2.93

Changelog

Sourced from wasm-bindgen-macro's changelog.

0.2.93

Released 2024-08-13

Added

  • Allow exporting functions named default. Throw error in wasm-bindgen-cli if --target web and an exported symbol is named default. #3930

  • Added support for arbitrary expressions when using #[wasm_bindgen(typescript_custom_section)]. #3901

  • Implement From<NonNull<T>> for JsValue. #3877

  • Add method copy_within for TypedArray, add methods find_last,find_last_index for Array. #3888

  • Added support for returning Vecs from async functions. #3630

  • Added bindings for InputDeviceInfo and MediaTrackCapabilities. #3935

  • Add bindings for RTCRtpReceiver.getCapabilities(DOMString) method. #3941

  • Add bindings for VisualViewport. #3931

  • Add bindings for queueMicrotask. #3981

  • Add experimental bindings for User Agent Client Hints API #3989

  • Add bindings for FocusOptions. #3996

  • Add bindings for RTCRtpReceiver.jitterBufferTarget. #3968

  • Generate getters for all WebIDL dictionary types. #3993

  • Support for iterable in WebIDL. Gives entries, keys, values methods for regular and asynchronous, as well as for_each for regular, iterables. #3962

  • Add bindings for HTMLTableCellElement.abbr and scope properties.

... (truncated)

Commits

Bumps the deps group with 24 updates:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.15` | `4.5.16` |
| [serde](https://github.com/serde-rs/serde) | `1.0.206` | `1.0.208` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.124` | `1.0.125` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.39.2` | `1.39.3` |
| [tower](https://github.com/tower-rs/tower) | `0.4.13` | `0.5.0` |
| [aws-smithy-runtime](https://github.com/smithy-lang/smithy-rs) | `1.6.2` | `1.6.3` |
| [aws-smithy-types](https://github.com/smithy-lang/smithy-rs) | `1.2.0` | `1.2.2` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.1.10` | `1.1.13` |
| [cpufeatures](https://github.com/RustCrypto/utils) | `0.2.12` | `0.2.13` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.3.0` | `2.4.0` |
| [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.69` | `0.3.70` |
| [libc](https://github.com/rust-lang/libc) | `0.2.155` | `0.2.158` |
| [mio](https://github.com/tokio-rs/mio) | `1.0.1` | `1.0.2` |
| [serde_derive](https://github.com/serde-rs/serde) | `1.0.206` | `1.0.208` |
| [syn](https://github.com/dtolnay/syn) | `2.0.74` | `2.0.75` |
| [tower-layer](https://github.com/tower-rs/tower) | `0.3.2` | `0.3.3` |
| [tower-service](https://github.com/tower-rs/tower) | `0.3.2` | `0.3.3` |
| [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) | `0.2.92` | `0.2.93` |
| [wasm-bindgen-backend](https://github.com/rustwasm/wasm-bindgen) | `0.2.92` | `0.2.93` |
| [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.42` | `0.4.43` |
| [wasm-bindgen-macro](https://github.com/rustwasm/wasm-bindgen) | `0.2.92` | `0.2.93` |
| [wasm-bindgen-macro-support](https://github.com/rustwasm/wasm-bindgen) | `0.2.92` | `0.2.93` |
| [wasm-bindgen-shared](https://github.com/rustwasm/wasm-bindgen) | `0.2.92` | `0.2.93` |
| [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.69` | `0.3.70` |


Updates `clap` from 4.5.15 to 4.5.16
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.15...clap_complete-v4.5.16)

Updates `serde` from 1.0.206 to 1.0.208
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.206...v1.0.208)

Updates `serde_json` from 1.0.124 to 1.0.125
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.124...1.0.125)

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

Updates `tower` from 0.4.13 to 0.5.0
- [Release notes](https://github.com/tower-rs/tower/releases)
- [Commits](tower-rs/tower@tower-0.4.13...tower-0.5.0)

Updates `aws-smithy-runtime` from 1.6.2 to 1.6.3
- [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.2.0 to 1.2.2
- [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.1.10 to 1.1.13
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.1.10...cc-v1.1.13)

Updates `cpufeatures` from 0.2.12 to 0.2.13
- [Commits](RustCrypto/utils@cpufeatures-v0.2.12...cpufeatures-v0.2.13)

Updates `indexmap` from 2.3.0 to 2.4.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.3.0...2.4.0)

Updates `js-sys` from 0.3.69 to 0.3.70
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/wasm-bindgen/commits)

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

Updates `mio` from 1.0.1 to 1.0.2
- [Release notes](https://github.com/tokio-rs/mio/releases)
- [Changelog](https://github.com/tokio-rs/mio/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/mio@v1.0.1...v1.0.2)

Updates `serde_derive` from 1.0.206 to 1.0.208
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.206...v1.0.208)

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

Updates `tower-layer` from 0.3.2 to 0.3.3
- [Release notes](https://github.com/tower-rs/tower/releases)
- [Commits](tower-rs/tower@tower-layer-0.3.2...tower-layer-0.3.3)

Updates `tower-service` from 0.3.2 to 0.3.3
- [Release notes](https://github.com/tower-rs/tower/releases)
- [Commits](tower-rs/tower@tower-service-0.3.2...tower-service-0.3.3)

Updates `wasm-bindgen` from 0.2.92 to 0.2.93
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.92...0.2.93)

Updates `wasm-bindgen-backend` from 0.2.92 to 0.2.93
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.92...0.2.93)

Updates `wasm-bindgen-futures` from 0.4.42 to 0.4.43
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/wasm-bindgen/commits)

Updates `wasm-bindgen-macro` from 0.2.92 to 0.2.93
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.92...0.2.93)

Updates `wasm-bindgen-macro-support` from 0.2.92 to 0.2.93
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.92...0.2.93)

Updates `wasm-bindgen-shared` from 0.2.92 to 0.2.93
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.92...0.2.93)

Updates `web-sys` from 0.3.69 to 0.3.70
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/wasm-bindgen/commits)

---
updated-dependencies:
- dependency-name: clap
  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: tokio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: tower
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: aws-smithy-runtime
  dependency-type: indirect
  update-type: version-update:semver-patch
  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: cpufeatures
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: indexmap
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: js-sys
  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: mio
  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: syn
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: tower-layer
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: tower-service
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: wasm-bindgen
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: wasm-bindgen-backend
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: wasm-bindgen-futures
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: wasm-bindgen-macro
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: wasm-bindgen-macro-support
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: wasm-bindgen-shared
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: web-sys
  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 Aug 19, 2024
Copy link

codecov bot commented Aug 19, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 46.97%. Comparing base (e82610c) to head (30c02e7).
Report is 3 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #183   +/-   ##
=======================================
  Coverage   46.97%   46.97%           
=======================================
  Files          27       27           
  Lines        3930     3930           
=======================================
  Hits         1846     1846           
  Misses       2084     2084           

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

@jwodder jwodder merged commit 6d87388 into main Aug 19, 2024
11 checks passed
@jwodder jwodder deleted the dependabot/cargo/deps-703046c838 branch August 19, 2024 12:33
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