Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the cargo-deps group with 30 updates #3566

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 22, 2023

Bumps the cargo-deps group with 30 updates:

Package From To
proc-macro2 1.0.69 1.0.71
syn 2.0.38 2.0.42
trybuild 1.0.85 1.0.86
gloo-worker 0.4.1 0.5.0
wasm-bindgen 0.2.87 0.2.89
serde 1.0.190 1.0.193
once_cell 1.18.0 1.19.0
js-sys 0.3.64 0.3.66
gloo 0.10.0 0.11.0
web-sys 0.3.64 0.3.66
wasm-bindgen-test 0.3.37 0.3.39
indexmap 2.0.2 2.1.0
thiserror 1.0.50 1.0.51
implicit-clone 0.4.1 0.4.8
tokio 1.33.0 1.35.1
divan 0.1.1 0.1.8
getrandom 0.2.10 0.2.11
tabled 0.14.0 0.15.0
serde_json 1.0.107 1.0.108
clap 4.4.7 4.4.11
anyhow 1.0.75 1.0.76
reqwest 0.11.22 0.11.23
gloo-net 0.4.0 0.5.0
fake 2.9.1 2.9.2
time 0.3.30 0.3.31
uuid 1.5.0 1.6.1
axum 0.6.20 0.7.2
tower-http 0.3.5 0.5.0
env_logger 0.10.0 0.10.1
hyper 0.14.27 1.1.0

Updates proc-macro2 from 1.0.69 to 1.0.71

Release notes

Sourced from proc-macro2's releases.

1.0.71

  • Turn on deny(unsafe_op_in_unsafe_fn) lint

1.0.70

  • Add #[track_caller] on Ident::new so that panics on invalid input are attributed to the caller (#423)
Commits
  • 593681b Release 1.0.71
  • 6756d15 Merge pull request #427 from dtolnay/unsafeop
  • e95447c Fill in unsafe blocks inside unsafe functions
  • 54f7f80 Turn on deny(unsafe_op_in_unsafe_fn)
  • 49b26d2 Update ui test suite to nightly-2023-12-15
  • 0b963a2 Unbreak binutils-dev install in GitHub Actions
  • f7576d1 Format with new rustfmt that handles let-else
  • 349dc3f Update afl fuzzer from 0.14 to 0.15
  • cd31a69 Release 1.0.70
  • 4482662 Merge pull request #423 from dtolnay/trackcaller
  • Additional commits viewable in compare view

Updates syn from 2.0.38 to 2.0.42

Release notes

Sourced from syn's releases.

2.0.42

  • Documentation improvements

2.0.41

  • Support parsing syn::Field in parse_quote! (#1548)

2.0.40

2.0.39

  • Fix parsing of return expression in match guards (#1528)
  • Improve error message on labeled loop as value expression for break (#1531)
Commits
  • 6dcf8ab Release 2.0.42
  • 4349d0b Merge pull request #1551 from dtolnay/cursorexample
  • 12ff3d1 Add a real-world example for ParseBuffer::cursor
  • bdd0645 Precondition for cmp_asssuming_same_buffer is to check same_buffer
  • a6ac138 Update test suite to nightly-2023-12-19
  • 66ee902 Ignore blocks_in_conditions clippy lint
  • e11575e Ignore uninhabited_references clippy lint
  • 63b1701 Release 2.0.41
  • 920ab7d Merge pull request #1548 from dtolnay/parsequotefield
  • 5e15924 Test parse_quote implementation for Field
  • Additional commits viewable in compare view

Updates trybuild from 1.0.85 to 1.0.86

Release notes

Sourced from trybuild's releases.

1.0.86

Commits
  • a6cbfe8 Release 1.0.86
  • 7c5a8fe Merge pull request #252 from dtolnay/cargofeatures
  • d3cd15b Propagate cargo features from source manifest
  • c28428d Merge pull request #251 from dtolnay/skipcargofeatures
  • 3e4029e Omit cargo-features from generated Cargo.toml if empty
  • 6653404 Merge pull request #250 from mohe2015/edition-2024
  • ee0a562 Support edition 2024
  • 8f62662 Ignore uninhabited_references clippy lint
  • c1f2d24 Ignore test_attr_in_doctest clippy lint
  • aa98d35 Test docs.rs documentation build in CI
  • See full diff in compare view

Updates gloo-worker from 0.4.1 to 0.5.0

Release notes

Sourced from gloo-worker's releases.

v0.5.0

What's Changed

v0.4.2

What's Changed

Full Changelog: rustwasm/gloo@0.4.0...v0.4.2

0.4.1 is also included in this release as they were both released back-to-back in a very short amount of time.

Changelog

Sourced from gloo-worker's changelog.

  • 0.5.0
  • Memory-based History (#178)
  • Hash-based History type & Unified Location. (#177)

net

Version "0.5.0"

  • Implement futures_io::AsyncWrite and futures_io::AsyncRead on WebSocket. This feature is behind a new feature flag io-util that is disabled by default.
  • Add TryFrom<web_sys::WebSocket> (#365)
  • Add WASI support for gloo-history. (#405)

Version "0.4.0"

  • Migrate to Edition 2021 and Apply MSRV in Cargo.toml (#360)

Version "0.3.1"

  • export RequestBuilder and ResponseBuilder as public

Version "0.3.0"

  • Seanaye/feat/serverside http (#312)

Version "0.2.6"

  • Add PartialEq, Eq, PartialOrd, Ord, Hash for eventsource State (#336)
  • Seanaye/feat/serverside http (#312)
  • Fix clippy for Rust 1.67 (#302)

Version "0.2.5"

  • Fix clippy. (#287)
  • Prevent send from hanging if connection fails. (#280)

Version "0.2.4"

  • fix(ws): calling close event with destroyed close callback (#264)
  • fix: cyclic dependency for gloo-net websocket feature (#260)
  • Gloo net fetch in worker (#253)
  • fix: remove unused import in gloo-net::http (#257)
  • Fix Request.json(): Use Rust Serde Serialization instead of Javascript Evaluator. Avoids Big Integer serialization issues. (#256)
  • Add std::error::Error impl for WebSocketError (#250)
  • Provides an EventSource implementation (#246)
  • Release new gloo versions

Version "0.2.3"

  • feat(gloo-utils): Lift serde-serialization from wasm-bindgen (#242)

... (truncated)

Commits

Updates wasm-bindgen from 0.2.87 to 0.2.89

Changelog

Sourced from wasm-bindgen's changelog.

0.2.89

Released 2023-11-27.

Added

  • Add additional constructor to DataView for SharedArrayBuffer. #3695

  • Stabilize wasm_bindgen::module(). #3690

Fixed

  • The DWARF section is now correctly modified instead of leaving it in a broken state. #3483

  • Fixed an issue where #[wasm_bindgen] automatically derived the TryFrom trait for any struct, preventing custom TryFrom<JsValue> implementations. It has been updated to utilize a new TryFromJsValue trait instead. #3709

  • Update the TypeScript signature of __wbindgen_thread_destroy to indicate that it's parameters are optional. #3703

Removed

  • Removed Gecko-internal dictionary bindings Csp, CspPolicies, CspReport and CspReportProperties. #3721

0.2.88

Released 2023-11-01

Added

  • Add bindings for RTCRtpTransceiverInit.sendEncodings. #3642

  • Add bindings for the Web Locks API to web-sys. #3604

  • Add bindings for ViewTransition to web-sys. #3598

  • Extend AudioContext with unstable features supporting audio sink configuration. #3433

  • Add bindings for WebAssembly.Tag and WebAssembly.Exception. #3484

  • Re-export wasm-bindgen from js-sys, web-sys and wasm-bindgen-futures.

... (truncated)

Commits

Updates serde from 1.0.190 to 1.0.193

Release notes

Sourced from serde's releases.

v1.0.193

v1.0.192

v1.0.191

  • Documentation improvements
Commits
  • 44613c7 Release 1.0.193
  • c706281 Merge pull request #2655 from dtolnay/rangestartend
  • 65d75b8 Add RangeFrom and RangeTo tests
  • 332b0cb Merge pull request #2654 from dtolnay/rangestartend
  • 8c4af41 Fix more RangeFrom / RangeEnd mixups
  • 24a78f0 Merge pull request #2653 from emilbonnek/fix/range-to-from-de-mixup
  • c91c334 Fix Range{From,To} deserialize mixup
  • 2083f43 Update ui test suite to nightly-2023-11-19
  • 4676abd Release 1.0.192
  • 35700eb Merge pull request #2646 from robsdedude/fix/2643/allow-tag-field-in-untagged
  • Additional commits viewable in compare view

Updates once_cell from 1.18.0 to 1.19.0

Changelog

Sourced from once_cell's changelog.

1.19.0

  • Use portable-atomic instead of atomic-polyfill, #251.
Commits

Updates js-sys from 0.3.64 to 0.3.66

Commits

Updates gloo from 0.10.0 to 0.11.0

Commits

Updates web-sys from 0.3.64 to 0.3.66

Commits

Updates wasm-bindgen-test from 0.3.37 to 0.3.39

Commits

Updates indexmap from 2.0.2 to 2.1.0

Changelog

Sourced from indexmap's changelog.

  • 2.1.0

    • Empty slices can now be created with map::Slice::{new, new_mut} and set::Slice::new. In addition, Slice::new, len, and is_empty are now const functions on both types.

    • IndexMap, IndexSet, and their respective Slices all have binary search methods for sorted data: map binary_search_keys and set binary_search for plain comparision, binary_search_by for custom comparators, binary_search_by_key for key extraction, and partition_point for boolean conditions.

Commits

Updates thiserror from 1.0.50 to 1.0.51

Release notes

Sourced from thiserror's releases.

1.0.51

  • Improve diagnostics when an invalid attribute previously caused thiserror to generate no Error impl (#266)
Commits
  • 0555b80 Release 1.0.51
  • b94add8 Add ui test where fallback impl conflicts with handwritten Display
  • 02c6a55 Merge pull request #266 from dtolnay/fallback
  • 1754825 Work around trivial bounds being unstable
  • 1567f40 Try to remove "doesn't implement Debug" in fallback expansion
  • d7e3bdd Fix redundant "Error doesn't implement Display" in fallback
  • 7e5ff62 Emit an Error impl even in the presence of bad attributes
  • 0444cd5 Merge pull request #265 from dtolnay/fallbackfixme
  • b010e52 Add test looking for invalid input to still generate an impl
  • 1c6c4bb Merge pull request #264 from dtolnay/errortraitpath
  • Additional commits viewable in compare view

Updates implicit-clone from 0.4.1 to 0.4.8

Commits
  • 30c7c20 chore: Release
  • a3636d8 Attempt to improve the documentation (#45)
  • 00aed91 Make from_iter() optimized (#41)
  • 1c30020 chore: Release
  • 085211b Derive macro should also work on enums (#47)
  • 8714ccf chore: Release
  • cdb7d07 Fix invalid missing README file
  • 7ac979a Add derive macro to get ImplicitClone implemented quicker (#46)
  • 801ee5f chore: Release implicit-clone version 0.4.6
  • 90c56f8 Add method to help ensure the type impl ImplicitClone (#44)
  • Additional commits viewable in compare view

Updates tokio from 1.33.0 to 1.35.1

Release notes

Sourced from tokio's releases.

Tokio v1.35.1

1.35.1 (December 19, 2023)

This is a forward part of a change that was backported to 1.25.3.

Fixed

  • io: add budgeting to tokio::runtime::io::registration::async_io (#6221)

#6221: tokio-rs/tokio#6221

Tokio v1.35.0

1.35.0 (December 8th, 2023)

Added

  • net: add Apple watchOS support (#6176)

Changed

  • io: drop the Sized requirements from AsyncReadExt.read_buf (#6169)
  • runtime: make Runtime unwind safe (#6189)
  • runtime: reduce the lock contention in task spawn (#6001)
  • tokio: update nix dependency to 0.27.1 (#6190)

Fixed

  • chore: make --cfg docsrs work without net feature (#6166)
  • chore: use relaxed load for unsync_load on miri (#6179)
  • runtime: handle missing context on wake (#6148)
  • taskdump: fix taskdump cargo config example (#6150)
  • taskdump: skip notified tasks during taskdumps (#6194)
  • tracing: avoid creating resource spans with current parent, use a None parent instead (#6107)
  • tracing: make task span explicit root (#6158)

Documented

  • io: flush in AsyncWriteExt examples (#6149)
  • runtime: document fairness guarantees and current behavior (#6145)
  • task: document cancel safety of LocalSet::run_until (#6147)

#6001: tokio-rs/tokio#6001 #6107: tokio-rs/tokio#6107 #6144: tokio-rs/tokio#6144 #6145: tokio-rs/tokio#6145 #6147: tokio-rs/tokio#6147 #6148: tokio-rs/tokio#6148 #6149: tokio-rs/tokio#6149 #6150: tokio-rs/tokio#6150 #6158: tokio-rs/tokio#6158

... (truncated)

Commits

Updates divan from 0.1.1 to 0.1.8

Changelog

Sourced from divan's changelog.

[0.1.8] - 2023-12-19

Changes

  • Reduce [AllocProfiler] footprint from 6-10ns to 1-2ns:

    • Thread-local values are now exclusively owned by their threads and are no longer kept in a global list. This enables some optimizations:

      • Performing faster unsynchronized arithmetic.

      • Removing one level of pointer indirection by storing the thread-local value entirely inline in [thread_local!], rather than storing a pointer to a globally-shared instance.

      • Compiler emits SIMD arithmetic for x86_64 using paddq.

    • Improved thread-local lookup on x86_64 macOS by using a static lookup key instead of a dynamic key from [pthread_key_create]. Key 11 is used because it is reserved for Windows.

      The dyn_thread_local crate feature disables this optimization. This is recommended if your code or another dependency uses the same static key.

Fixed

  • Remove unused allocations if [AllocProfiler] is not active as the global allocator.

[0.1.7] - 2023-12-13

Changes

  • Improve [AllocProfiler] implementation documentation.

  • Limit [AllocProfiler] mean count outputs to 4 significant digits to not be very wide and for consistency with other outputs.

[0.1.6] - 2023-12-13

Added

  • [AllocProfiler] allocator that tracks allocation counts and sizes during benchmarks.

[0.1.5] - 2023-12-05

Added

... (truncated)

Commits
  • 84b130b Release v0.1.8
  • 0e40758 Nudge optimizer to emit aligned SIMD ops
  • fb269a9 Optimize AllocProfiler thread local usage
  • c19d751 Make ThreadAllocInfo::try_current never panic
  • 041e606 Improve thread alloc info reuse for Windows
  • 6aae8bb Improve thread alloc info reuse for Unix
  • e6a69b7 Reduce AllocProfiler footprint on x86_64 macOS
  • c92fa3c Move links in util::sync::get_thread_local
  • 1efd6d0 Add platforms for asm thread ID example benchmark
  • d0c0c73 Add GetCurrentProcessorNumber example benchmarks
  • Additional commits viewable in compare view

Updates getrandom from 0.2.10 to 0.2.11

Changelog

Sourced from getrandom's changelog.

[0.2.11] - 2023-11-08

Added

  • GNU/Hurd support #370

Changed

  • Renamed __getrandom_internal to __GETRANDOM_INTERNAL #369
  • Updated link to Hermit docs #374

#369: rust-random/getrandom#369 #370: rust-random/getrandom#370 #374: rust-random/getrandom#374

Commits

Updates tabled from 0.14.0 to 0.15.0

Changelog

Sourced from tabled's changelog.

[0.15.0] - 2023-12-20

Added

  • Added Table::modify as an option to Modify usage, which make cleaner code.
  • Added more features to themes::Theme.
  • Added a new setting Reverse to reverse the table.
  • Added vertical support for LineText.
  • Added ByContet locator.
  • Added ByCondition locator.
  • Added Locator factory for Locations.
  • Added tabled features to all subprojects to be able to reduce binary size.

Changed

  • Move Style to const implementation (it invloved changes to Border/BorderColor and more related subjects).
  • Added a basic implementation for a render.
  • Added a new Style (by @​Brijeshkrishna).
  • Refactored a Builder methods (by @​CouldBeFree)
  • Changed ColumnNames interface.
  • Changed LineText interface.
  • Changed IntoRecords interface.
  • Reordered TableOption interface.
  • Renamed BorderText to LineText.
  • Renamed BorderChar to LineChar.
  • Renamed RawStyle to themes::Theme.
  • Renamed Locator to Location.
  • Renamed papergrid::Color trait to ANSIFmt.
  • Renamed papergrid::StaticColor trait to ANSIStr.
  • Renamed papergrid::ColorBuf trait to ANSIBuf.
  • Renamed color feature to ansi.

Fixed

  • Fix IndexBuilder::is_empty function (by @pjhades).
  • Fix a clippy warning in tabled_derive.
  • Fix spelling mistakes (by @​oliashish).
  • Fix spelling mistakes (by @​Kobzol).

[0.13.0] - 2023-07-24

Added

  • Added settings::Dup to toplicate content.
  • Added settings::themes::ColumnNames to set text on border (adjusted to cells).
  • Added Xor implementation for Color.
  • Added Colorization to set colors of table by a pattern.
Commits

Updates serde_json from 1.0.107 to 1.0.108

Release notes

Sourced from serde_json's releases.

v1.0.108

Commits

Updates clap from 4.4.7 to 4.4.11

Release notes

Sourced from clap's releases.

v4.4.11

[4.4.11] - 2023-12-04

Features

  • Add Command::mut_group

v4.4.10

[4.4.10] - 2023-11-28

Documentation

  • Link out to changelog
  • Cross link derive's attribute reference to derive tutorial

v4.4.9

[4.4.9] - 2023-11-27

Fixes

  • (help) Show correct Command::about under flattened headings
  • (help) Respect hide when flattening subcommands

v4.4.8

[4.4.8] - 2023-11-10

Features

  • Add Command::flatten_help to allow git stash -h like help for subcommands
Changelog

Sourced from clap's changelog.

[4.4.11] - 2023-12-04

Features

  • Add Command::mut_group

[4.4.10] - 2023-11-28

Documentation

  • Link out to changelog
  • Cross link derive's attribute reference to derive tutorial

[4.4.9] - 2023-11-27

Fixes

  • (help) Show correct Command::about under flattened headings
  • (help) Respect hide when flattening subcommands

[4.4.8] - 2023-11-10

Features

  • Add Command::flatten_help to allow git stash -h like help for subcommands
Commits

Updates anyhow from 1.0.75 to 1.0.76

Release notes

Sourced from anyhow's releases.

1.0.76

  • Opt in to unsafe_op_in_unsafe_fn lint (#329)
Commits
  • 5cad3bf Release 1.0.76
  • d371a49 Merge pull request #329 from dtolnay/unsafeop
  • 07aac81 Fill in unsafe blocks inside unsafe functions
  • 5ea720d Turn on deny(unsafe_op_in_unsafe_fn)
  • 539e831 Detect whether unsafe_op_in_unsafe_fn lint is available
  • afb298e Label the compiler versions in build.rs with a comment and link
  • a205cc9 Add a funding file
  • 05e4132 Ignore struct_field_names pedantic clippy lint
  • 98921f8 Remove 'remember to update' reminder from Cargo.toml
  • 1ae9905 Ignore needless_raw_string_hashes clippy lint
  • Additional commits viewable in compare view

Updates reqwest from 0.11.22 to 0.11.23

Release notes

Sourced from reqwest's releases.

v0.11.23

What's Changed

  • Add Proxy::custom_http_auth(val) for setting the raw Proxy-Authorization header when connecting to proxies.
  • Fix redirect to reject locations that are not http:// or https://.
  • Fix setting nodelay when TLS is enabled but URL is HTTP.
  • (wasm) Add ClientBuilder::user_agent(val).
  • (wasm) add multipart::Form::headers(headers).

New Contributors

Bumps the cargo-deps group with 30 updates:

| Package | From | To |
| --- | --- | --- |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.69` | `1.0.71` |
| [syn](https://github.com/dtolnay/syn) | `2.0.38` | `2.0.42` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.85` | `1.0.86` |
| [gloo-worker](https://github.com/rustwasm/gloo) | `0.4.1` | `0.5.0` |
| [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) | `0.2.87` | `0.2.89` |
| [serde](https://github.com/serde-rs/serde) | `1.0.190` | `1.0.193` |
| [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` |
| [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.66` |
| [gloo](https://github.com/rustwasm/gloo) | `0.10.0` | `0.11.0` |
| [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.66` |
| [wasm-bindgen-test](https://github.com/rustwasm/wasm-bindgen) | `0.3.37` | `0.3.39` |
| [indexmap](https://github.com/bluss/indexmap) | `2.0.2` | `2.1.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.51` |
| [implicit-clone](https://github.com/yewstack/implicit-clone) | `0.4.1` | `0.4.8` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.33.0` | `1.35.1` |
| [divan](https://github.com/nvzqz/divan) | `0.1.1` | `0.1.8` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.10` | `0.2.11` |
| [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.108` |
| [clap](https://github.com/clap-rs/clap) | `4.4.7` | `4.4.11` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.76` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.23` |
| [gloo-net](https://github.com/rustwasm/gloo) | `0.4.0` | `0.5.0` |
| [fake](https://github.com/cksac/fake-rs) | `2.9.1` | `2.9.2` |
| [time](https://github.com/time-rs/time) | `0.3.30` | `0.3.31` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.5.0` | `1.6.1` |
| [axum](https://github.com/tokio-rs/axum) | `0.6.20` | `0.7.2` |
| [tower-http](https://github.com/tower-rs/tower-http) | `0.3.5` | `0.5.0` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` |
| [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.1.0` |


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

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

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

Updates `gloo-worker` from 0.4.1 to 0.5.0
- [Release notes](https://github.com/rustwasm/gloo/releases)
- [Changelog](https://github.com/rustwasm/gloo/blob/master/CHANGELOG.md)
- [Commits](rustwasm/gloo@gloo-worker-v0.4.1...0.5.0)

Updates `wasm-bindgen` from 0.2.87 to 0.2.89
- [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.87...0.2.89)

Updates `serde` from 1.0.190 to 1.0.193
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.190...v1.0.193)

Updates `once_cell` from 1.18.0 to 1.19.0
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.18.0...v1.19.0)

Updates `js-sys` from 0.3.64 to 0.3.66
- [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 `gloo` from 0.10.0 to 0.11.0
- [Release notes](https://github.com/rustwasm/gloo/releases)
- [Changelog](https://github.com/rustwasm/gloo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/gloo/commits)

Updates `web-sys` from 0.3.64 to 0.3.66
- [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-test` from 0.3.37 to 0.3.39
- [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 `indexmap` from 2.0.2 to 2.1.0
- [Changelog](https://github.com/bluss/indexmap/blob/master/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.0.2...2.1.0)

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

Updates `implicit-clone` from 0.4.1 to 0.4.8
- [Commits](yewstack/implicit-clone@v0.4.1...v0.4.8)

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

Updates `divan` from 0.1.1 to 0.1.8
- [Changelog](https://github.com/nvzqz/divan/blob/main/CHANGELOG.md)
- [Commits](nvzqz/divan@v0.1.1...v0.1.8)

Updates `getrandom` from 0.2.10 to 0.2.11
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.2.10...v0.2.11)

Updates `tabled` from 0.14.0 to 0.15.0
- [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md)
- [Commits](zhiburt/tabled@v0.14.0...v0.15.0)

Updates `serde_json` from 1.0.107 to 1.0.108
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.107...v1.0.108)

Updates `clap` from 4.4.7 to 4.4.11
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.4.7...v4.4.11)

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

Updates `reqwest` from 0.11.22 to 0.11.23
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.11.22...v0.11.23)

Updates `gloo-net` from 0.4.0 to 0.5.0
- [Release notes](https://github.com/rustwasm/gloo/releases)
- [Changelog](https://github.com/rustwasm/gloo/blob/master/CHANGELOG.md)
- [Commits](rustwasm/gloo@0.4.0...0.5.0)

Updates `fake` from 2.9.1 to 2.9.2
- [Commits](https://github.com/cksac/fake-rs/commits)

Updates `time` from 0.3.30 to 0.3.31
- [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.30...v0.3.31)

Updates `uuid` from 1.5.0 to 1.6.1
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.5.0...1.6.1)

Updates `axum` from 0.6.20 to 0.7.2
- [Release notes](https://github.com/tokio-rs/axum/releases)
- [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
- [Commits](tokio-rs/axum@axum-v0.6.20...axum-v0.7.2)

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

Updates `env_logger` from 0.10.0 to 0.10.1
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.10.0...v0.10.1)

Updates `hyper` from 0.14.27 to 1.1.0
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper@v0.14.27...v1.1.0)

---
updated-dependencies:
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: trybuild
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: gloo-worker
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: wasm-bindgen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: js-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: gloo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: web-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: wasm-bindgen-test
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: indexmap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: implicit-clone
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: divan
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: getrandom
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: tabled
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: gloo-net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: fake
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: time
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: axum
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: tower-http
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: hyper
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Dec 22, 2023
Copy link

Benchmark - core

Yew Master

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.778 ns      │ 3.354 ns      │ 2.78 ns       │ 2.797 ns      │ 100     │ 1000000000

Pull Request

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.6 ns        │ 3.533 ns      │ 2.618 ns      │ 2.645 ns      │ 100     │ 1000000000

Copy link

Visit the preview URL for this PR (updated for commit f115d00):

https://yew-rs-api--pr3566-dependabot-cargo-car-b5xettml.web.app

(expires Fri, 29 Dec 2023 03:44:16 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

Copy link

Benchmark - SSR

Yew Master

Benchmark Round Min (ms) Max (ms) Mean (ms) Standard Deviation
Baseline 10 308.889 310.443 309.231 0.457
Hello World 10 494.863 531.505 504.805 14.125
Function Router 10 1601.195 1620.639 1610.036 6.289
Concurrent Task 10 1005.894 1007.185 1006.486 0.395
Many Providers 10 1137.741 1157.473 1145.549 7.317

Pull Request

Benchmark Round Min (ms) Max (ms) Mean (ms) Standard Deviation
Baseline 10 289.427 295.398 290.362 1.829
Hello World 10 504.358 515.393 508.323 3.776
Function Router 10 1594.244 1609.806 1601.085 4.968
Concurrent Task 10 1005.719 1007.133 1006.450 0.506
Many Providers 10 1140.185 1184.047 1152.913 13.593

Copy link

Size Comparison

examples master (KB) pull request (KB) diff (KB) diff (%)
async_clock 101.085 101.347 +0.262 +0.259%
boids 174.754 174.911 +0.157 +0.090%
communication_child_to_parent 93.473 93.702 +0.229 +0.246%
communication_grandchild_with_grandparent 106.465 106.688 +0.224 +0.210%
communication_grandparent_to_grandchild 101.711 101.939 +0.229 +0.225%
communication_parent_to_child 89.812 90.041 +0.229 +0.256%
contexts 106.578 106.801 +0.223 +0.209%
counter 86.855 87.065 +0.210 +0.242%
counter_functional 87.257 87.499 +0.242 +0.278%
dyn_create_destroy_apps 89.701 89.935 +0.233 +0.260%
file_upload 100.729 100.994 +0.265 +0.263%
function_memory_game 173.502 173.673 +0.171 +0.098%
function_router 350.721 350.697 -0.023 -0.007%
function_todomvc 162.199 162.422 +0.223 +0.137%
futures 230.407 230.609 +0.202 +0.088%
game_of_life 111.108 111.346 +0.237 +0.214%
immutable 186.096 189.328 +3.232 +1.737%
inner_html 80.552 80.785 +0.233 +0.290%
js_callback 110.316 110.705 +0.389 +0.352%
keyed_list 200.063 200.274 +0.211 +0.105%
mount_point 83.446 83.690 +0.244 +0.293%
nested_list 114.661 114.891 +0.229 +0.200%
node_refs 90.963 91.209 +0.246 +0.271%
password_strength 1751.697 1752.021 +0.324 +0.019%
portals 94.202 94.447 +0.245 +0.260%
router 319.571 319.698 +0.127 +0.040%
simple_ssr 141.325 141.688 +0.363 +0.257%
ssr_router 388.968 388.953 -0.015 -0.004%
suspense 116.549 116.802 +0.253 +0.217%
timer 89.367 89.573 +0.206 +0.231%
timer_functional 98.732 98.904 +0.172 +0.174%
todomvc 142.512 142.720 +0.208 +0.146%
two_apps 86.570 86.807 +0.236 +0.273%
web_worker_fib 135.578 136.032 +0.454 +0.335%
web_worker_prime 185.973 186.401 +0.429 +0.231%
webgl 83.118 83.447 +0.329 +0.396%

⚠️ The following example has changed its size significantly:

examples master (KB) pull request (KB) diff (KB) diff (%)
immutable 186.096 189.328 +3.232 +1.737%

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 22, 2023

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

@dependabot dependabot bot closed this Dec 22, 2023
@dependabot dependabot bot deleted the dependabot/cargo/cargo-deps-6682ba2ad8 branch December 22, 2023 07:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants