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 22 updates #3554

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the cargo-deps group with 22 updates:

Package From To
proc-macro2 1.0.69 1.0.70
syn 2.0.38 2.0.39
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
web-sys 0.3.64 0.3.66
wasm-bindgen-test 0.3.37 0.3.39
indexmap 2.0.2 2.1.0
implicit-clone 0.4.1 0.4.8
tokio 1.33.0 1.34.0
divan 0.1.1 0.1.5
getrandom 0.2.10 0.2.11
serde_json 1.0.107 1.0.108
clap 4.4.7 4.4.11
gloo-net 0.4.0 0.5.0
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.0.1

Updates proc-macro2 from 1.0.69 to 1.0.70

Release notes

Sourced from proc-macro2's releases.

1.0.70

  • Add #[track_caller] on Ident::new so that panics on invalid input are attributed to the caller (#423)
Commits
  • cd31a69 Release 1.0.70
  • 4482662 Merge pull request #423 from dtolnay/trackcaller
  • 690ab11 Track caller for Ident validation panics
  • f15383f Merge pull request #422 from dtolnay/newchecked
  • ea2cd7f Rename internal Ident::new -> Ident::new_checked
  • 8059195 Merge pull request #421 from dtolnay/identunchecked
  • 805a6ad Bypass Ident validation on identifiers created by parser
  • c513462 Merge pull request #420 from dtolnay/newraw
  • bd778e1 Delete Ident::_new_raw
  • 0cb3649 Ignore checked_conversions pedantic clippy lint
  • Additional commits viewable in compare view

Updates syn from 2.0.38 to 2.0.39

Release notes

Sourced from syn's releases.

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
  • 924217c Release 2.0.39
  • 95aeeb5 Merge pull request #1531 from dtolnay/breaklabel
  • b88f86f Ignore single_element_loop clippy lint in test
  • a876185 Improve error on break followed by labeled loop
  • 32ab979 Add test of ambiguous label parsing in break
  • 6f658f8 Merge pull request #1530 from dtolnay/canbeginexpr
  • 20497e1 More precise decision to parse expression after return keyword
  • c6a651a Update name of ExprReturn parse function to match variant name
  • c274590 Indicate that peek argument refers to syn::Ident
  • 3e67cb0 Merge pull request #1529 from dtolnay/up
  • Additional commits viewable 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 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 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.34.0

Release notes

Sourced from tokio's releases.

Tokio v1.34.0

Fixed

  • io: allow clear_readiness after io driver shutdown (#6067)
  • io: fix integer overflow in take (#6080)
  • io: fix I/O resource hang (#6134)
  • sync: fix broadcast::channel link (#6100)

Changed

  • macros: use ::core qualified imports instead of ::std inside tokio::test macro (#5973)

Added

  • fs: update cfg attr in fs::read_dir to include aix (#6075)
  • sync: add mpsc::Receiver::recv_many (#6010)
  • tokio: added vita target support (#6094)

#5973: tokio-rs/tokio#5973 #6067: tokio-rs/tokio#6067 #6080: tokio-rs/tokio#6080 #6134: tokio-rs/tokio#6134 #6100: tokio-rs/tokio#6100 #6075: tokio-rs/tokio#6075 #6010: tokio-rs/tokio#6010 #6094: tokio-rs/tokio#6094

Commits

Updates divan from 0.1.1 to 0.1.5

Changelog

Sourced from divan's changelog.

[0.1.5] - 2023-12-05

Added

  • black_box_drop convenience function for [black_box] + [drop][drop_fn]. This is useful when benchmarking a lazy [Iterator] to completion with for_each:

    #[divan::bench]
    fn parse_iter() {
        let input: &str = // ...
    Parser::new(input)
        .for_each(divan::black_box_drop);
    
    }

[0.1.4] - 2023-12-02

Added

  • From implementations for counters on references to u8u64 and usize, such as From<&u64> and From<&&u64>. This allows for doing:

    bencher
        .with_inputs(|| { ... })
        .input_counter(ItemsCount::from)
        .bench_values(|n| { ... });
  • Bencher::count_inputs_as<C> method to convert inputs to a Counter:

    bencher
        .with_inputs(|| -> usize {
            // ...
        })
        .count_inputs_as::<ItemsCount>()
        .bench_values(|n| -> Vec<usize> {
            (0..n).collect()
        });

[0.1.3] - 2023-11-21

Added

... (truncated)

Commits
  • a158560 Release v0.1.5
  • 8cca423 Add black_box_drop convenience function
  • 2032b47 Release v0.1.4
  • 79791bf Add Bencher::count_inputs_as\<C>
  • 1e0ba5a Add From impls for counters on int refs
  • 40784c8 Release v0.1.3
  • 0f7133e Add convenience shorthand options for counters
  • a173613 Deduplicate target groups
  • 39dc3d7 Emit compile error for unsupported OS
  • 06c4c02 Always use pre-main instead of linkme
  • 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 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 gloo-net from 0.4.0 to 0.5.0

Release notes

Sourced from gloo-net'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-net'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)
Commits

Updates uuid from 1.5.0 to 1.6.1

Release notes

Sourced from uuid's releases.

1.6.1

What's Changed

Full Changelog: uuid-rs/uuid@1.6.0...1.6.1

1.6.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.5.0...1.6.0

Commits

Updates axum from 0.6.20 to 0.7.2

Release notes

Sourced from axum's releases.

axum-extra - v0.7.2

  • added: Implement IntoResponse for MultipartError (#1861)

#1861: tokio-rs/axum#1861

axum - v0.7.2

  • added: Add axum::body::to_bytes (#2373)
  • fixed: Gracefully handle accept errors in serve (#2400)

#2373: tokio-rs/axum#2373 #2400: tokio-rs/axum#2400

axum-extra - v0.7.1

  • Updated to latest axum-macros

axum - v0.7.1

  • fix: Fix readme.

axum-extra - v0.7.0

  • breaking: Remove the spa feature which should have been removed in 0.6.0 (#1802)
  • added: Add Multipart. This is similar to axum::extract::Multipart except that it enforces field exclusivity at runtime instead of compile time, as this improves usability (#1692)
  • added: Implement Clone for CookieJar, PrivateCookieJar and SignedCookieJar (#1808)
  • fixed: Add #[must_use] attributes to types that do nothing unless used (#1809)

#1692: tokio-rs/axum#1692 #1802: tokio-rs/axum#1802 #1808: tokio-rs/axum#1808 #1809: tokio-rs/axum#1809

axum - v0.7.0

  • breaking: Update public dependencies. axum now requires
  • breaking: axum now requires tower-http 0.5
  • breaking: Remove deprecated WebSocketUpgrade::max_send_queue
  • breaking: The following types/traits are no longer generic over the request body (i.e. the B type param has been removed) (#1751 and #1789):
    • FromRequestParts
    • FromRequest
    • HandlerService
    • HandlerWithoutStateExt
    • Handler
    • LayeredFuture
    • Layered
    • MethodRouter
    • Next
    • RequestExt

... (truncated)

Commits

Bumps the cargo-deps group with 22 updates:

| Package | From | To |
| --- | --- | --- |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.69` | `1.0.70` |
| [syn](https://github.com/dtolnay/syn) | `2.0.38` | `2.0.39` |
| [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` |
| [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` |
| [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.34.0` |
| [divan](https://github.com/nvzqz/divan) | `0.1.1` | `0.1.5` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.10` | `0.2.11` |
| [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` |
| [gloo-net](https://github.com/rustwasm/gloo) | `0.4.0` | `0.5.0` |
| [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.0.1` |


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

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

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 `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 `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.34.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.33.0...tokio-1.34.0)

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

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 `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 `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 `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.0.1
- [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.0.1)

---
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: 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: 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: 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: 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: gloo-net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Dec 8, 2023
Copy link

github-actions bot commented Dec 8, 2023

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

https://yew-rs-api--pr3554-dependabot-cargo-car-1xe1jmx0.web.app

(expires Fri, 15 Dec 2023 03:36:14 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

Copy link

github-actions bot commented Dec 8, 2023

Benchmark - core

Yew Master

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.778 ns      │ 4.215 ns      │ 2.781 ns      │ 2.816 ns      │ 100     │ 1000000000

Pull Request

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.778 ns      │ 4.57 ns       │ 2.782 ns      │ 2.809 ns      │ 100     │ 1000000000

Copy link

github-actions bot commented Dec 8, 2023

Benchmark - SSR

Yew Master

Benchmark Round Min (ms) Max (ms) Mean (ms) Standard Deviation
Baseline 10 308.940 309.611 309.224 0.233
Hello World 10 492.087 512.701 499.820 5.711
Function Router 10 1644.688 1660.666 1650.484 5.669
Concurrent Task 10 1005.563 1006.820 1006.125 0.386
Many Providers 10 1108.848 1149.214 1124.584 13.271

Pull Request

Benchmark Round Min (ms) Max (ms) Mean (ms) Standard Deviation
Baseline 10 308.810 309.607 309.140 0.239
Hello World 10 476.624 513.476 483.830 11.854
Function Router 10 1599.607 1644.289 1614.358 13.119
Concurrent Task 10 1005.650 1006.632 1006.222 0.316
Many Providers 10 1120.483 1168.319 1138.144 13.413

Copy link

github-actions bot commented Dec 8, 2023

Size Comparison

examples master (KB) pull request (KB) diff (KB) diff (%)
async_clock 100.268 100.493 +0.226 +0.225%
boids 173.693 173.882 +0.188 +0.109%
communication_child_to_parent 92.661 92.887 +0.226 +0.243%
communication_grandchild_with_grandparent 105.668 105.896 +0.228 +0.215%
communication_grandparent_to_grandchild 100.925 101.162 +0.237 +0.235%
communication_parent_to_child 89.003 89.226 +0.223 +0.250%
contexts 105.856 106.100 +0.243 +0.230%
counter 86.044 86.246 +0.202 +0.235%
counter_functional 86.430 86.668 +0.238 +0.276%
dyn_create_destroy_apps 88.899 89.132 +0.232 +0.261%
file_upload 100.007 100.250 +0.243 +0.243%
function_memory_game 172.416 172.587 +0.171 +0.099%
function_router 350.111 349.249 -0.862 -0.246%
function_todomvc 161.188 161.381 +0.193 +0.120%
futures 229.389 229.588 +0.199 +0.087%
game_of_life 110.188 110.409 +0.222 +0.201%
immutable 185.276 188.497 +3.221 +1.738%
inner_html 79.784 80.019 +0.234 +0.294%
js_callback 109.417 109.801 +0.384 +0.351%
keyed_list 199.345 199.542 +0.197 +0.099%
mount_point 82.667 82.910 +0.243 +0.294%
nested_list 113.777 114.002 +0.225 +0.197%
node_refs 90.200 90.449 +0.249 +0.276%
password_strength 1750.553 1750.781 +0.229 +0.013%
portals 93.372 93.620 +0.248 +0.266%
router 318.985 318.245 -0.740 -0.232%
simple_ssr 140.335 140.692 +0.357 +0.255%
ssr_router 387.371 386.508 -0.863 -0.223%
suspense 115.688 115.936 +0.247 +0.214%
timer 88.531 88.732 +0.201 +0.227%
timer_functional 97.851 98.056 +0.205 +0.210%
todomvc 141.342 141.544 +0.202 +0.143%
two_apps 85.753 85.986 +0.233 +0.272%
web_worker_fib 134.782 135.216 +0.434 +0.322%
web_worker_prime 185.043 185.432 +0.389 +0.210%
webgl 82.397 82.669 +0.271 +0.329%

⚠️ The following example has changed its size significantly:

examples master (KB) pull request (KB) diff (KB) diff (%)
immutable 185.276 188.497 +3.221 +1.738%

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 15, 2023

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

@dependabot dependabot bot closed this Dec 15, 2023
@dependabot dependabot bot deleted the dependabot/cargo/cargo-deps-cd76f6c9c3 branch December 15, 2023 03:37
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.

0 participants