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 35 updates #3596

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 2, 2024

Bumps the cargo-deps group with 35 updates:

Package From To
gloo 0.10.0 0.11.0
indexmap 2.0.2 2.2.2
wasm-bindgen 0.2.87 0.2.90
thiserror 1.0.50 1.0.56
futures 0.3.29 0.3.30
serde 1.0.190 1.0.196
web-sys 0.3.64 0.3.67
wasm-bindgen-futures 0.4.37 0.4.40
tokio 1.33.0 1.35.1
wasm-bindgen-test 0.3.37 0.3.40
trybuild 1.0.85 1.0.89
gloo-worker 0.4.1 0.5.0
once_cell 1.18.0 1.19.0
prettyplease 0.2.15 0.2.16
divan 0.1.1 0.1.11
getrandom 0.2.10 0.2.12
tabled 0.14.0 0.15.0
clap 4.4.7 4.4.18
anyhow 1.0.75 1.0.79
chrono 0.4.31 0.4.33
regex 1.10.2 1.10.3
reqwest 0.11.22 0.11.24
strum 0.25.0 0.26.1
semver 1.0.20 1.0.21
gloo-net 0.4.0 0.5.0
base64 0.21.5 0.21.7
strum_macros 0.25.3 0.26.1
pulldown-cmark 0.9.3 0.9.6
fake 2.9.1 2.9.2
time 0.3.30 0.3.32
uuid 1.5.0 1.7.0
axum 0.6.20 0.7.4
tower-http 0.3.5 0.5.1
env_logger 0.10.0 0.10.2
hyper 0.14.27 1.1.0

Updates gloo from 0.10.0 to 0.11.0

Commits

Updates indexmap from 2.0.2 to 2.2.2

Changelog

Sourced from indexmap's changelog.

2.2.2

  • Added indexing methods to raw entries: RawEntryBuilder::from_hash_full, RawEntryBuilder::index_from_hash, and RawEntryMut::index.

2.2.1

  • Corrected the signature of RawOccupiedEntryMut::into_key(self) -> &'a mut K, This a breaking change from 2.2.0, but that version was published for less than a day and has now been yanked.

2.2.0

  • The new IndexMap::get_index_entry method finds an entry by its index for in-place manipulation.

  • The Keys iterator now implements Index<usize> for quick access to the entry's key, compared to indexing the map to get the value.

  • The new IndexMap::splice and IndexSet::splice methods will drain the given range as an iterator, and then replace that range with entries from an input iterator.

  • The new trait RawEntryApiV1 offers opt-in access to a raw entry API for IndexMap, corresponding to the unstable API on HashSet as of Rust 1.75.

  • Many IndexMap and IndexSet methods have relaxed their type constraints, e.g. removing K: Hash on methods that don't actually need to hash.

  • Removal methods remove, remove_entry, and take are now deprecated in favor of their shift_ or swap_ prefixed variants, which are more explicit about their effect on the index and order of remaining items. The deprecated methods will remain to guide drop-in replacements from HashMap and HashSet toward the prefixed methods.

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 comparison, binary_search_by for custom comparators, binary_search_by_key for key extraction, and partition_point for boolean conditions.

Commits
  • 1a50e7b Merge pull request #305 from cuviper/raw_entry-index
  • f4bb006 Release 2.2.2
  • 54a42ec Add indexing methods to raw entry
  • 7264ce4 Merge pull request #304 from cuviper/raw-into_key
  • 244bd81 Fix RawOccupiedEntryMut::into_key
  • 7107c49 Merge pull request #303 from cuviper/test-updates
  • 34a7af7 Allow clippy::style
  • 382a45c Upgrade dev-dep itertools to 0.12
  • 904689f ci: upgrade to actions/checkout@v4
  • 405fa10 Merge pull request #302 from cuviper/release-2.2.0
  • Additional commits viewable in compare view

Updates wasm-bindgen from 0.2.87 to 0.2.90

Changelog

Sourced from wasm-bindgen's changelog.

0.2.90

Released 2024-01-06

Fixed

  • Fix JS shim default path detection for the no-modules target. #3748

Added

  • Add bindings for HTMLFormElement.requestSubmit(). #3747

  • Add bindings for RTCRtpSender.getCapabilities(DOMString) method, RTCRtpCapabilities, RTCRtpCodecCapability and RTCRtpHeaderExtensionCapability. #3737

  • Add bindings for UserActivation. #3719

  • Add unstable bindings for the Compression Streams API. #3752

Changed

  • Stabilize File System API. #3745

  • Stabilize QueuingStrategy. #3753

Fixed

  • Fixed a compiler error when using #[wasm_bindgen] inside macro_rules!. #3725

Removed

  • Removed Gecko-only InstallTriggerData and Gecko-internal FlexLineGrowthState, GridDeclaration, GridTrackState, RtcLifecycleEvent and WebrtcGlobalStatisticsReport features. #3723

0.2.89

Released 2023-11-27.

Added

  • Add additional constructor to DataView for SharedArrayBuffer. #3695

... (truncated)

Commits
  • adcf778 Bump versions & update changelog for 0.2.90 release (#3763)
  • a3332e4 CI fix for Rust 1.75 (#3761)
  • c0ee195 Stabilize QueuingStrategy (#3753)
  • 0069b66 Add unstable bindings for the Compression Streams API (#3752)
  • a070715 Add bindings for HTMLFormElement.requestSubmit() (#3747)
  • cc9a219 Fix JS shim default path detection for the no-modules target (#3748)
  • 185e9db Stabilize File System API (#3745)
  • bb94567 Point to component model instead of host bindings (#3746)
  • a5d2539 Implement RTCRtpSender.getCapabilities method (#3737)
  • cfe3dc2 Add a test runner to two of the typescript tests to actually run them (#3704)
  • Additional commits viewable in compare view

Updates thiserror from 1.0.50 to 1.0.56

Release notes

Sourced from thiserror's releases.

1.0.56

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

1.0.55

  • Work around improperly cached build script result by sccache – second attempt (#280)

1.0.54

  • Work around improperly cached build script result by sccache – first attempt (#279)

1.0.53

  • Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#270)

1.0.52

  • Fix interaction with RUSTC_BOOTSTRAP (#269)

1.0.51

  • Improve diagnostics when an invalid attribute previously caused thiserror to generate no Error impl (#266)
Commits
  • 77d0af4 Release 1.0.56
  • d4caabd Pull in proc-macro2 sccache fix
  • 6089273 Release 1.0.55
  • 322a2ae Merge pull request #280 from dtolnay/depinfo
  • fd7d7a5 Emit dep-info for probe.rs in case sccache needs it
  • 447c328 Release 1.0.54
  • 4619db8 Merge pull request #279 from dtolnay/depinfo
  • 7b53bff Make env-dep:RUSTC_BOOTSTRAP get listed in probe's dep-info
  • e0500ad Merge pull request #277 from dtolnay/nightlyci
  • 48cea47 Make CI verify that error_generic_member_access works in latest nightly
  • Additional commits viewable in compare view

Updates futures from 0.3.29 to 0.3.30

Release notes

Sourced from futures's releases.

0.3.30

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Changelog

Sourced from futures's changelog.

0.3.30 - 2023-12-24

  • Add {BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of (#2797)
  • Fix panic in FuturesUnordered::clear (#2809)
  • Fix panic in AsyncBufReadExt::fill_buf (#2801, #2812)
  • Improve support for targets without atomic CAS (#2811)
  • Remove build scripts (#2811)
Commits
  • de1a0fd Release 0.3.30
  • 68d2845 Remove a redundant space in example (#2816)
  • fdd2ce7 Fix broken link in CopyBufAbortable docs (#2815)
  • 272a3c7 Use cfg(target_has_atomic) on no-std targets
  • c179201 FillBuf: Do not call poll_fill_buf twice
  • e6735f3 FuturesUnordered: Fix clear implementation
  • 04d01a0 FuturesOrdered: Use 64-bit index
  • e4aa659 remove redundant impl Unpin
  • 17851c1 provide a mechanism to determine if io read/write halves are from the same st...
  • 4910799 provide a non-destructive mechanism to determine if a sink/stream are paired
  • Additional commits viewable in compare view

Updates serde from 1.0.190 to 1.0.196

Release notes

Sourced from serde's releases.

v1.0.196

  • Improve formatting of "invalid type" error messages involving floats (#2682)

v1.0.195

  • Prevent remote definitions of tuple struct or tuple variant from triggering dead_code warning (#2671)

v1.0.194

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

v1.0.193

v1.0.192

v1.0.191

  • Documentation improvements
Commits
  • ede9762 Release 1.0.196
  • d438c2d Merge pull request #2682 from dtolnay/decimalpoint
  • bef110b Format Unexpected::Float with decimal point
  • b971ef1 Merge pull request #2681 from dtolnay/workspacedeps
  • 29d9f69 Fix workspace.dependencies default-features future compat warning
  • aecb408 Sort workspace dependencies
  • 1c675ab Merge pull request #2678 from rodoufu/workspaceDependencies
  • dd61963 Adding workspace dependencies
  • 111803a Merge pull request #2673 from Sky9x/msrv-badge
  • 0024f74 Use shields.io's MSRV badges
  • Additional commits viewable in compare view

Updates web-sys from 0.3.64 to 0.3.67

Commits

Updates wasm-bindgen-futures from 0.4.37 to 0.4.40

Commits

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 wasm-bindgen-test from 0.3.37 to 0.3.40

Commits

Updates trybuild from 1.0.85 to 1.0.89

Release notes

Sourced from trybuild's releases.

1.0.89

  • Normalize compiler build date messages (#254)

1.0.88

  • Work around dead_code warning false positive (#253)

1.0.87

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache

1.0.86

Commits
  • e8dfc24 Release 1.0.89
  • 0d77118 Merge pull request #255 from dtolnay/rebuild
  • 7fd4570 Force rebuild on new files in tests directory
  • 840b110 Merge pull request #254 from dtolnay/builddate
  • 7126507 Normalize compiler build date note
  • 94a33cb Add test of compiler build date note
  • 52caff6 Release 1.0.88
  • 0321a01 Merge pull request #253 from dtolnay/deadflock
  • b720ee6 Work around dead_code warning in flock implementation
  • 0081291 Release 1.0.87
  • 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.6.0"

  • Update http crate to 1.0 (#407)

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

... (truncated)

Commits

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 prettyplease from 0.2.15 to 0.2.16

Release notes

Sourced from prettyplease's releases.

0.2.16

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache
Commits
  • 380c7b8 Release 0.2.16
  • 7b9b350 Pull in proc-macro2 sccache fix
  • 987bea1 Merge pull request #65 from dtolnay/testmatchguard
  • e5e9511 Add test of parenthesization of struct lit in match guard
  • ae86c8c Merge pull request #64 from dtolnay/grouped
  • acdc42e Look into invisible delimiters to determine exterior struct lit
  • b2f30c7 Merge pull request #63 from dtolnay/structcond
  • 1575443 Add test of automatic parenthesization of braced structs in cond
  • 11ebfab Format with new rustfmt that handles let-else
  • 91033e8 Give a variable name before passing boolean arg
  • Additional commits viewable in compare view

Updates divan from 0.1.1 to 0.1.11

Changelog

Sourced from divan's changelog.

Commits
  • e1d53ef Release v0.1.11
  • 88ad85c Fix args negative number sorting
  • 981e96b Release v0.1.10
  • ab190d8 Fix args number sorting to match consts
  • 04ee651 Release v0.1.9
  • 0fce2c4 Consider maximum span of runtime argument names
  • 75b958c Sort and filter runtime arguments
  • bc0a5ba Optimize string runtime argument names
  • dc4c9d1 Initial support of runtime arguments
  • f791b05 Add memoized fibonacci example benchmarks
  • Additional commits viewable in compare view

Updates getrandom from 0.2.10 to 0.2.12

Changelog

Sourced from getrandom's changelog.

[0.2.12] - 2024-01-09

Fixed

  • Custom backend for targets without atomics #385

Changed

  • Improve robustness of the Hermit backend and sys_fill_exact #386
  • Raise minimum supported Apple OS versions to macOS 10.12 and iOS 10 #388

Added

  • Document platform support policy #387

#385: rust-random/getrandom#385 #386: rust-random/getrandom#386 #387: rust-random/getrandom#387 #388: rust-random/getrandom#388

[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 clap from 4.4.7 to 4.4.18

Release notes

Sourced from clap's releases.

v4.4.18

[4.4.18] - 2024-01-16

Fixes

  • (error) When lacking usage feature, ensure the list of required arguments is unique

v4.4.17

[4.4.17] - 2024-01-15

Fixes

  • Fix panic! when mixing args_conflicts_with_subcommands with ArgGroup (which is implicit with derive) introduced in 4.4.15

v4.4.16

[4.4.16] - 2024-01-12

Fixes

  • Ensure invalid escape sequences in user-defined strings are correctly stripped when terminal doesn't support color

v4.4.15

[4.4.15] - 2024-01-11

Fixes

  • Improve error for args_conflicts_with_subcommands
  • Ensure we error for args_conflicts_with_subcommands when using subcommand short and long flags

v4.4.14

[4.4.14] - 2024-01-08

Documentation

  • Fix find cookbook entry to allow repeats of flags/options

Features

  • Allow num_args(0) on options which allows making them emulate being a flag for position-tracking flags

v4.4.13

[4.4.13] - 2024-01-04

Documentation

  • Fix link to structopt migration guide

v4.4.12

[4.4.12] - 2023-12-28

... (truncated)

Changelog

Sourced from clap's changelog.

[4.4.18] - 2024-01-16

Fixes

  • (error) When lacking usage feature, ensure the list of required arguments is unique

[4.4.17] - 2024-01-15

Fixes

  • Fix panic! when mixing args_conflicts_with_subcommands with ArgGroup (which is implicit with derive) introduced in 4.4.15

[4.4.16] - 2024-01-12

Fixes

  • Ensure invalid escape sequences in user-defined strings are correctly stripped when terminal doesn't support color

[4.4.15] - 2024-01-11

Fixes

  • Improve error for args_conflicts_with_subcommands
  • Ensure we error for args_conflicts_with_subcommands when using subcommand short and long flags

[4.4.14] - 2024-01-08

Documentation

  • Fix find cookbook entry to allow repeats of flags/options

Features

  • Allow num_args(0) on options which allows making them emulate being a flag for position-tracking flags

[4.4.13] - 2024-01-04

Documentation

  • Fix link to structopt migration guide

[4.4.12] - 2023-12-28

Performance

  • Only ask TypedValueParser for possible values if needed

[4.4.11] - 2023-12-04

Features

... (truncated)

Commits

Updates anyhow from 1.0.75 to 1.0.79

Release notes

Sourced from anyhow's releases.

1.0.79

  • Work around improperly cached build script result by sccache (#340)

1.0.78

  • Reduce spurious rebuilds under RustRover IDE when using a nightly toolchain (#337)

1.0.77

1.0.76

  • Opt in to unsafe_op_in_unsafe_fn lint (#329)
Commits
  • 71ab53d Release 1.0.79
  • 60705a5 Merge pull request #340 from dtolnay/depinfo
  • 17e252b Include env-dep:RUSTC_BOOTSTRAP in dep-info for sccache
  • 04774c0 Merge pull request Description has been truncated

Bumps the cargo-deps group with 35 updates:

| Package | From | To |
| --- | --- | --- |
| [gloo](https://github.com/rustwasm/gloo) | `0.10.0` | `0.11.0` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.0.2` | `2.2.2` |
| [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) | `0.2.87` | `0.2.90` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.56` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` |
| [serde](https://github.com/serde-rs/serde) | `1.0.190` | `1.0.196` |
| [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.67` |
| [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.37` | `0.4.40` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.33.0` | `1.35.1` |
| [wasm-bindgen-test](https://github.com/rustwasm/wasm-bindgen) | `0.3.37` | `0.3.40` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.85` | `1.0.89` |
| [gloo-worker](https://github.com/rustwasm/gloo) | `0.4.1` | `0.5.0` |
| [once_cell](https://github.com/matklad/once_cell) | `1.18.0` | `1.19.0` |
| [prettyplease](https://github.com/dtolnay/prettyplease) | `0.2.15` | `0.2.16` |
| [divan](https://github.com/nvzqz/divan) | `0.1.1` | `0.1.11` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.10` | `0.2.12` |
| [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` |
| [clap](https://github.com/clap-rs/clap) | `4.4.7` | `4.4.18` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.79` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.31` | `0.4.33` |
| [regex](https://github.com/rust-lang/regex) | `1.10.2` | `1.10.3` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.11.24` |
| [strum](https://github.com/Peternator7/strum) | `0.25.0` | `0.26.1` |
| [semver](https://github.com/dtolnay/semver) | `1.0.20` | `1.0.21` |
| [gloo-net](https://github.com/rustwasm/gloo) | `0.4.0` | `0.5.0` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.21.5` | `0.21.7` |
| [strum_macros](https://github.com/Peternator7/strum) | `0.25.3` | `0.26.1` |
| [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) | `0.9.3` | `0.9.6` |
| [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.32` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.5.0` | `1.7.0` |
| [axum](https://github.com/tokio-rs/axum) | `0.6.20` | `0.7.4` |
| [tower-http](https://github.com/tower-rs/tower-http) | `0.3.5` | `0.5.1` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.2` |
| [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.1.0` |


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 `indexmap` from 2.0.2 to 2.2.2
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.0.2...2.2.2)

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

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

Updates `futures` from 0.3.29 to 0.3.30
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.29...0.3.30)

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

Updates `web-sys` from 0.3.64 to 0.3.67
- [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-futures` from 0.4.37 to 0.4.40
- [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 `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 `wasm-bindgen-test` from 0.3.37 to 0.3.40
- [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 `trybuild` from 1.0.85 to 1.0.89
- [Release notes](https://github.com/dtolnay/trybuild/releases)
- [Commits](dtolnay/trybuild@1.0.85...1.0.89)

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 `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 `prettyplease` from 0.2.15 to 0.2.16
- [Release notes](https://github.com/dtolnay/prettyplease/releases)
- [Commits](dtolnay/prettyplease@0.2.15...0.2.16)

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

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

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 `clap` from 4.4.7 to 4.4.18
- [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.4.7...v4.4.18)

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

Updates `chrono` from 0.4.31 to 0.4.33
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.31...v0.4.33)

Updates `regex` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.10.2...1.10.3)

Updates `reqwest` from 0.11.22 to 0.11.24
- [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.24)

Updates `strum` from 0.25.0 to 0.26.1
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Peternator7/strum/commits/v0.26.1)

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

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 `base64` from 0.21.5 to 0.21.7
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.21.5...v0.21.7)

Updates `strum_macros` from 0.25.3 to 0.26.1
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Peternator7/strum/commits/v0.26.1)

Updates `pulldown-cmark` from 0.9.3 to 0.9.6
- [Release notes](https://github.com/raphlinus/pulldown-cmark/releases)
- [Commits](pulldown-cmark/pulldown-cmark@v0.9.3...v0.9.6)

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.32
- [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.32)

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

Updates `axum` from 0.6.20 to 0.7.4
- [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.4)

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

Updates `env_logger` from 0.10.0 to 0.10.2
- [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.2)

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: gloo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: indexmap
  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: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: futures
  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: web-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: wasm-bindgen-futures
  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: wasm-bindgen-test
  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: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: prettyplease
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: 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: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: regex
  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: strum
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: semver
  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: base64
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: strum_macros
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: pulldown-cmark
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Feb 2, 2024
Copy link

github-actions bot commented Feb 2, 2024

Benchmark - core

Yew Master

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.73 ns       │ 4.925 ns      │ 2.736 ns      │ 2.78 ns       │ 100     │ 1000000000

Pull Request

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.471 ns      │ 3.716 ns      │ 2.474 ns      │ 2.546 ns      │ 100     │ 1000000000

Copy link

github-actions bot commented Feb 2, 2024

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

https://yew-rs-api--pr3596-dependabot-cargo-car-osvk7sm0.web.app

(expires Fri, 09 Feb 2024 03:41:52 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

Copy link

github-actions bot commented Feb 2, 2024

Benchmark - SSR

Yew Master

Benchmark Round Min (ms) Max (ms) Mean (ms) Standard Deviation
Baseline 10 289.196 290.302 289.494 0.363
Hello World 10 492.313 534.062 505.090 13.659
Function Router 10 1655.595 1676.233 1667.050 6.517
Concurrent Task 10 1004.846 1006.896 1006.280 0.601
Many Providers 10 1170.462 1198.546 1177.623 8.597

Pull Request

Benchmark Round Min (ms) Max (ms) Mean (ms) Standard Deviation
Baseline 10 308.808 309.676 309.101 0.288
Hello World 10 499.481 551.532 509.680 15.607
Function Router 10 1602.074 1623.385 1610.045 6.337
Concurrent Task 10 1005.755 1007.061 1006.416 0.395
Many Providers 10 1117.113 1192.622 1143.471 22.730

Copy link

github-actions bot commented Feb 2, 2024

Size Comparison

examples master (KB) pull request (KB) diff (KB) diff (%)
async_clock 101.976 102.590 +0.614 +0.602%
boids 175.727 175.862 +0.136 +0.077%
communication_child_to_parent 94.521 94.756 +0.235 +0.249%
communication_grandchild_with_grandparent 107.464 107.695 +0.231 +0.215%
communication_grandparent_to_grandchild 102.736 102.979 +0.242 +0.236%
communication_parent_to_child 90.876 91.114 +0.238 +0.262%
contexts 107.564 107.807 +0.242 +0.225%
counter 87.848 88.060 +0.212 +0.241%
counter_functional 88.240 88.480 +0.240 +0.272%
dyn_create_destroy_apps 90.746 90.927 +0.181 +0.199%
file_upload 101.673 101.938 +0.266 +0.261%
function_memory_game 174.510 177.496 +2.986 +1.711%
function_router 352.346 352.897 +0.552 +0.157%
function_todomvc 163.168 166.222 +3.054 +1.872%
futures 231.767 232.352 +0.585 +0.252%
game_of_life 112.117 112.303 +0.186 +0.165%
immutable 189.771 190.686 +0.915 +0.482%
inner_html 81.535 81.773 +0.238 +0.292%
js_callback 111.292 111.602 +0.310 +0.278%
keyed_list 201.010 201.228 +0.218 +0.108%
mount_point 84.426 84.686 +0.260 +0.308%
nested_list 115.844 116.077 +0.233 +0.201%
node_refs 91.999 92.251 +0.252 +0.274%
password_strength 1753.843 1752.041 -1.802 -0.103%
portals 95.194 95.451 +0.257 +0.270%
router 321.412 322.043 +0.631 +0.196%
simple_ssr 142.315 142.693 +0.378 +0.266%
ssr_router 390.729 391.213 +0.484 +0.124%
suspense 117.515 117.701 +0.187 +0.159%
timer 90.343 90.506 +0.163 +0.181%
timer_functional 99.699 99.880 +0.181 +0.181%
todomvc 143.458 146.498 +3.040 +2.119%
two_apps 87.535 87.781 +0.246 +0.281%
web_worker_fib 136.751 137.158 +0.407 +0.298%
web_worker_prime 187.155 188.889 +1.733 +0.926%
webgl 84.146 84.335 +0.188 +0.224%

⚠️ The following examples have changed their size significantly:

examples master (KB) pull request (KB) diff (KB) diff (%)
function_memory_game 174.510 177.496 +2.986 +1.711%
function_todomvc 163.168 166.222 +3.054 +1.872%
todomvc 143.458 146.498 +3.040 +2.119%

Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 9, 2024

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

@dependabot dependabot bot closed this Feb 9, 2024
@dependabot dependabot bot deleted the dependabot/cargo/cargo-deps-99f4e71e2e branch February 9, 2024 04:02
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