Skip to content
New issue

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

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

Already on GitHub? # to your account

Bump the cargo-deps group with 48 updates #35

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Apr 5, 2024

Bumps the cargo-deps group with 48 updates:

Package From To
gloo 0.10.0 0.11.0
indexmap 2.0.2 2.2.6
wasm-bindgen 0.2.87 0.2.92
thiserror 1.0.50 1.0.55
futures 0.3.29 0.3.30
implicit-clone 0.4.8 0.4.9
serde 1.0.190 1.0.193
web-sys 0.3.64 0.3.69
wasm-bindgen-futures 0.4.37 0.4.42
tokio 1.33.0 1.37.0
wasm-bindgen-test 0.3.37 0.3.42
trybuild 1.0.85 1.0.86
gloo-worker 0.4.1 0.5.0
proc-macro2 1.0.69 1.0.79
quote 1.0.33 1.0.35
syn 2.0.38 2.0.58
once_cell 1.18.0 1.19.0
prettyplease 0.2.15 0.2.17
divan 0.1.1 0.1.14
getrandom 0.2.10 0.2.12
average 0.14.1 0.15.0
tabled 0.14.0 0.15.0
indicatif 0.17.7 0.17.8
serde_json 1.0.107 1.0.109
clap 4.4.7 4.5.4
anyhow 1.0.75 1.0.81
chrono 0.4.31 0.4.37
git2 0.18.1 0.18.3
regex 1.10.2 1.10.4
reqwest 0.11.22 0.12.3
strum 0.25.0 0.26.2
semver 1.0.20 1.0.22
gloo-net 0.4.0 0.5.0
base64 0.21.5 0.22.0
strum_macros 0.25.3 0.26.2
lipsum 0.9.0 0.9.1
log 0.4.20 0.4.21
pulldown-cmark 0.9.3 0.10.2
fake 2.9.1 2.9.2
time 0.3.30 0.3.34
uuid 1.5.0 1.8.0
bytes 1.5.0 1.6.0
warp 0.3.6 0.3.7
axum 0.6.20 0.7.5
tower-http 0.3.5 0.5.2
env_logger 0.10.0 0.10.2
hyper 0.14.27 1.2.0
serde_derive 1.0.190 1.0.193

Updates gloo from 0.10.0 to 0.11.0

Commits

Updates indexmap from 2.0.2 to 2.2.6

Changelog

Sourced from indexmap's changelog.

2.2.6

  • Added trait MutableValues for opt-in mutable access to set values.

2.2.5

  • Added optional borsh serialization support.

2.2.4

  • Added an insert_sorted method on IndexMap, IndexSet, and VacantEntry.
  • Avoid hashing for lookups in single-entry maps.
  • Limit preallocated memory in serde deserializers.

2.2.3

  • Added move_index and swap_indices methods to IndexedEntry, OccupiedEntry, and RawOccupiedEntryMut, functioning like the existing methods on IndexMap.
  • Added shift_insert methods on VacantEntry and RawVacantEntryMut, as well as shift_insert_hashed_nocheck on the latter, to insert the new entry at a particular index.
  • Added shift_insert methods on IndexMap and IndexSet to insert a new entry at a particular index, or else move an existing entry there.

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.

... (truncated)

Commits
  • 3f0fffb Merge pull request #323 from cuviper/mutable
  • 33c1a7c Fix unused_imports
  • b76ff73 Fix clippy::multiple_bound_locations
  • 0060546 Release 2.2.6
  • 210b027 Opt-in mutable access on IndexSet
  • 184fe4b Merge pull request #320 from cuviper/release-2.2.5
  • 5d7bd5e Release 2.2.5
  • c934ace Merge pull request #313 from heliaxdev/heliax/borsh-support
  • b81a4d2 Use S for the BuildHasher parameter
  • 32793f1 Don't require BuildHasher in BorshSerialize
  • Additional commits viewable in compare view

Updates wasm-bindgen from 0.2.87 to 0.2.92

Changelog

Sourced from wasm-bindgen's changelog.

0.2.92

Released 2024-03-04

Added

  • Add bindings for RTCPeerConnectionIceErrorEvent. #3835

  • Add bindings for CanvasState.reset(), affecting CanvasRenderingContext2D and OffscreenCanvasRenderingContext2D. #3844

  • Add TryFrom implementations for Number, that allow losslessly converting from 64- and 128-bits numbers. #3847

  • Add support for Option<*const T>, Option<*mut T> and NonNull<T>. #3852 #3857

  • Allow overriding the URL used for headless tests by setting WASM_BINDGEN_TEST_ADDRESS. #3861

Fixed

  • Make .wasm output deterministic when using --reference-types. #3851

  • Don't allow invalid Unicode scalar values in char. #3866


0.2.91

Released 2024-02-06

Added

  • Added bindings for the RTCRtpTransceiver.setCodecPreferences() and unstable bindings for the RTCRtpEncodingParameters.scalabilityMode. #3828

  • Add unstable bindings for the FileSystemAccess API #3810

  • Added support for running tests in shared and service workers with wasm_bindgen_test_configure! run_in_shared_worker and run_in_service_worker. #3804

  • Accept the --skip flag with wasm-bindgen-test-runner. #3803

... (truncated)

Commits

Updates thiserror from 1.0.50 to 1.0.55

Release notes

Sourced from thiserror's releases.

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
  • 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
  • fe40a50 Merge pull request #276 from dtolnay/optionifletelse
  • b97654a Remove option_if_let_else clippy suppression
  • 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 implicit-clone from 0.4.8 to 0.4.9

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 web-sys from 0.3.64 to 0.3.69

Commits

Updates wasm-bindgen-futures from 0.4.37 to 0.4.42

Commits

Updates tokio from 1.33.0 to 1.37.0

Release notes

Sourced from tokio's releases.

Tokio v1.37.0

1.37.0 (March 28th, 2024)

Added

  • fs: add set_max_buf_size to tokio::fs::File (#6411)
  • io: add try_new and try_with_interest to AsyncFd (#6345)
  • sync: add forget_permits method to semaphore (#6331)
  • sync: add is_closed, is_empty, and len to mpsc receivers (#6348)
  • sync: add a rwlock() method to owned RwLock guards (#6418)
  • sync: expose strong and weak counts of mpsc sender handles (#6405)
  • sync: implement Clone for watch::Sender (#6388)
  • task: add TaskLocalFuture::take_value (#6340)
  • task: implement FromIterator for JoinSet (#6300)

Changed

  • io: make io::split use a mutex instead of a spinlock (#6403)

Fixed

  • docs: fix docsrs build without net feature (#6360)
  • macros: allow select with only else branch (#6339)
  • runtime: fix leaking registration entries when os registration fails (#6329)

Documented

  • io: document cancel safety of AsyncBufReadExt::fill_buf (#6431)
  • io: document cancel safety of AsyncReadExt's primitive read functions (#6337)
  • runtime: add doc link from Runtime to #[tokio::main] (#6366)
  • runtime: make the enter example deterministic (#6351)
  • sync: add Semaphore example for limiting the number of outgoing requests (#6419)
  • sync: fix missing period in broadcast docs (#6377)
  • sync: mark mpsc::Sender::downgrade with #[must_use] (#6326)
  • sync: reorder const_new before new_with (#6392)
  • sync: update watch channel docs (#6395)
  • task: fix documentation links (#6336)

Changed (unstable)

  • runtime: include task Id in taskdumps (#6328)
  • runtime: panic if unhandled_panic is enabled when not supported (#6410)

#6300: tokio-rs/tokio#6300 #6326: tokio-rs/tokio#6326 #6328: tokio-rs/tokio#6328 #6329: tokio-rs/tokio#6329 #6331: tokio-rs/tokio#6331 #6336: tokio-rs/tokio#6336 #6337: tokio-rs/tokio#6337

... (truncated)

Commits
  • 9c337ca chore: prepare Tokio v1.37.0 (#6435)
  • e542501 io: document cancel safety of AsyncBufReadExt::fill_buf (#6431)
  • 4601c84 stream: add next_many and poll_next_many to StreamMap (#6409)
  • deff252 util: document cancel safety of SinkExt::send and StreamExt::next (#6417)
  • 4565b81 sync: add a rwlock() method to owned RwLock guards (#6418)
  • 3ce4720 sync: add is_closed, is_empty, and len to mpsc receivers (#6348)
  • 8342e4b util: assert compatibility between LengthDelimitedCodec options (#6414)
  • 4c453e9 readme: add description about benchmarks (#6425)
  • 1846483 sync: expose strong and weak counts of mpsc sender handles (#6405)
  • baad270 sync: add Semaphore example for limiting the number of outgoing requests (#6419)
  • Additional commits viewable in compare view

Updates wasm-bindgen-test from 0.3.37 to 0.3.42

Commits

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.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 proc-macro2 from 1.0.69 to 1.0.79

Release notes

Sourced from proc-macro2's releases.

1.0.79

  • Clean up dead code

1.0.78

1.0.77

  • Add a function to reset thread-local span data (#438, thanks @​buchgr)

1.0.76

  • Work around dead_code warning false positive (#435)

1.0.75

  • Improve error messages related to proc_macro::LexError (#434)

1.0.74

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

1.0.73

  • Documentation improvements

1.0.72

  • Improve build script to be robust to proc_macro::Span unstable API changes

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
  • 4ba4ab1 Release 1.0.79
  • b176581 Prevent new lint from turning off nightly span support under -Dwarnings
  • b9cd864 Fix dead_code warning on fallback SourceFile
  • e94f432 Ignore incompatible_msrv clippy lint for conditionally compiled code
  • 18c75c6 Ignore dead_code warning in test
  • 5cd21eb Update ui test suite to nightly-2024-02-01
  • d850a1d Release 1.0.78
  • 6cefaec Merge pull request #442 from dtolnay/byterange
  • 1082767 Expose Span::byte_range
  • da1be4d Release 1.0.77
  • Additional commits viewable in compare view

Updates quote from 1.0.33 to 1.0.35

Release notes

Sourced from quote's releases.

1.0.35

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

1.0.34

  • Documentation improvements
Commits

Updates syn from 2.0.38 to 2.0.58

Release notes

Sourced from syn's releases.

2.0.58

  • Support $ in custom_punctuation! macro (#1611)

2.0.57

  • Eliminate dependency on quote when built with default-features disabled and the "proc-macro" feature enabled (#1608, thanks @​BD103)

2.0.56

  • Apply RUSTC_WORKSPACE_WRAPPER when deciding whether to run nightly-only tests (#1605)

2.0.55

  • Restore compatibility with rustc 1.56 through 1.59 (#1603)

2.0.54

  • Fix dead code warning in generated code when using custom_keyword! with syn's "printing" feature disabled (#1602)

2.0.53

  • Implement Copy, Clone, and ToTokens for syn::parse::Nothing (#1597)

2.0.52

  • Add an expression parser that uses match-arm's boundary rules (#1593)

2.0.51

  • Resolve non_local_definitions warnings in generated code under rustc 1.78-nightly

2.0.50

  • Fix unused_imports warnings when compiled by rustc 1.78

2.0.49

  • Improve error location when parsing from an empty string literal using LitStr::parse (#1590)

2.0.48

  • Improve error message on unexpected token after else (#1578)

2.0.47

  • Improve error messages related to proc_macro::LexError (#1575)

2.0.46

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

2.0.45

  • Parse unsupported expressions in enum discriminants of DeriveInput as Expr::Verbatim in non-"full" mode, instead of error (#1513)
  • Support parsing PatType with parse_quote! (#1573)

2.0.44

  • Documentation improvements

2.0.43

  • Insert trailing comma if not already present when printing a 1-tuple in pattern position (#1553)

2.0.42

... (truncated)

Commits
  • 81adad6 Release 2.0.58
  • 7247053 Merge pull request #1611 from dtolnay/customdollar
  • 990142f Support '$' in custom_punctuation macro
  • 4753622 Merge pull request #1610 from dtolnay/sortpunct
  • 36a7f67 Sort tokens in the same order between custom_punctuation_len and Token macro
  • f104427 Update test suite to nightly-2024-03-31
  • 9cea040 Release 2.0.57
  • 3c07b78 Release 2.0.56
  • 585df47 Merge pull request #1608 from BD103/deps-features
  • d7650b2 chore: bump msrv to 1.60 (pt. 2)
  • 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 prettyplease from 0.2.15 to 0.2.17

Release notes

Sourced from prettyplease's releases.

0.2.17

  • Fix formatting of imports that contain ::{self as (#70)

0.2.16

  • Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache
Commits
  • 0875d2d Release 0.2.17
  • 7f0aef1 Merge pull request #70 from dtolnay/selfas
  • a899304 Preserve braces in 'use path::to::{self as rename}'
  • d8b3595 Revert "Temporarily disable prettyplease-update-examples in CI"
  • c49b5fe Temporarily disable prettyplease-update-examples in CI
  • 2b6085f Update test suite to nightly-2024-03-06
  • d54ac46 Merge pull request #66 from dtolnay/exhaustive
  • bcbb5fc Pick up changes to non_exhaustive_omitted_patterns lint
  • 380c7b8 Release 0.2.16
  • 7b9b350 Pull in proc-macro2 sccache fix
  • Additional commits viewable in compare view

Updates divan from 0.1.1 to 0.1.14

Changelog

Sourced from divan's changelog.

Commits
  • 8768032 Release v0.1.14
  • 0ed49f1 docs: Add Divan::max_time fix to changelog
  • 41dfe96 Use BytesCount::of_many in BytesCount::of_iter
  • 7f0d2ce docs: Relate args option to Bencher
  • 5ad9a14 Set the correct field in Divan::max_time()
  • 5ece287 ci: Unpin nightly version
  • f268466 docs: Improve fibonacci example
  • 1c182e9 Allow unknown lints
  • 5f368e9 ci: Pin to nightly-2024-02-10
  • 54a787d Allow ToString impl lint
  • 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

Bumps the cargo-deps group with 48 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.6` |
| [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) | `0.2.87` | `0.2.92` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.50` | `1.0.55` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.29` | `0.3.30` |
| [implicit-clone](https://github.com/yewstack/implicit-clone) | `0.4.8` | `0.4.9` |
| [serde](https://github.com/serde-rs/serde) | `1.0.190` | `1.0.193` |
| [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.69` |
| [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.37` | `0.4.42` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.33.0` | `1.37.0` |
| [wasm-bindgen-test](https://github.com/rustwasm/wasm-bindgen) | `0.3.37` | `0.3.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` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.69` | `1.0.79` |
| [quote](https://github.com/dtolnay/quote) | `1.0.33` | `1.0.35` |
| [syn](https://github.com/dtolnay/syn) | `2.0.38` | `2.0.58` |
| [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.17` |
| [divan](https://github.com/nvzqz/divan) | `0.1.1` | `0.1.14` |
| [getrandom](https://github.com/rust-random/getrandom) | `0.2.10` | `0.2.12` |
| [average](https://github.com/vks/average) | `0.14.1` | `0.15.0` |
| [tabled](https://github.com/zhiburt/tabled) | `0.14.0` | `0.15.0` |
| [indicatif](https://github.com/console-rs/indicatif) | `0.17.7` | `0.17.8` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.107` | `1.0.109` |
| [clap](https://github.com/clap-rs/clap) | `4.4.7` | `4.5.4` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.75` | `1.0.81` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.31` | `0.4.37` |
| [git2](https://github.com/rust-lang/git2-rs) | `0.18.1` | `0.18.3` |
| [regex](https://github.com/rust-lang/regex) | `1.10.2` | `1.10.4` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.22` | `0.12.3` |
| [strum](https://github.com/Peternator7/strum) | `0.25.0` | `0.26.2` |
| [semver](https://github.com/dtolnay/semver) | `1.0.20` | `1.0.22` |
| [gloo-net](https://github.com/rustwasm/gloo) | `0.4.0` | `0.5.0` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.21.5` | `0.22.0` |
| [strum_macros](https://github.com/Peternator7/strum) | `0.25.3` | `0.26.2` |
| [lipsum](https://github.com/mgeisler/lipsum) | `0.9.0` | `0.9.1` |
| [log](https://github.com/rust-lang/log) | `0.4.20` | `0.4.21` |
| [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) | `0.9.3` | `0.10.2` |
| [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.34` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.5.0` | `1.8.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.5.0` | `1.6.0` |
| [warp](https://github.com/seanmonstar/warp) | `0.3.6` | `0.3.7` |
| [axum](https://github.com/tokio-rs/axum) | `0.6.20` | `0.7.5` |
| [tower-http](https://github.com/tower-rs/tower-http) | `0.3.5` | `0.5.2` |
| [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.2.0` |
| [serde_derive](https://github.com/serde-rs/serde) | `1.0.190` | `1.0.193` |


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

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

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

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 `implicit-clone` from 0.4.8 to 0.4.9
- [Commits](yewstack/implicit-clone@v0.4.8...v0.4.9)

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 `web-sys` from 0.3.64 to 0.3.69
- [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.42
- [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.37.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.33.0...tokio-1.37.0)

Updates `wasm-bindgen-test` from 0.3.37 to 0.3.42
- [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.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 `proc-macro2` from 1.0.69 to 1.0.79
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.69...1.0.79)

Updates `quote` from 1.0.33 to 1.0.35
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.33...1.0.35)

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

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

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

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 `average` from 0.14.1 to 0.15.0
- [Commits](https://github.com/vks/average/commits)

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 `indicatif` from 0.17.7 to 0.17.8
- [Release notes](https://github.com/console-rs/indicatif/releases)
- [Commits](console-rs/indicatif@0.17.7...0.17.8)

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

Updates `clap` from 4.4.7 to 4.5.4
- [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.5.4)

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

Updates `chrono` from 0.4.31 to 0.4.37
- [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.37)

Updates `git2` from 0.18.1 to 0.18.3
- [Changelog](https://github.com/rust-lang/git2-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/git2-rs@git2-0.18.1...git2-0.18.3)

Updates `regex` from 1.10.2 to 1.10.4
- [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.4)

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

Updates `strum` from 0.25.0 to 0.26.2
- [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.2)

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

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

Updates `strum_macros` from 0.25.3 to 0.26.2
- [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.2)

Updates `lipsum` from 0.9.0 to 0.9.1
- [Release notes](https://github.com/mgeisler/lipsum/releases)
- [Commits](mgeisler/lipsum@0.9.0...0.9.1)

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

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

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

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

Updates `bytes` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.5.0...v1.6.0)

Updates `warp` from 0.3.6 to 0.3.7
- [Release notes](https://github.com/seanmonstar/warp/releases)
- [Changelog](https://github.com/seanmonstar/warp/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/warp@v0.3.6...v0.3.7)

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

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

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.2.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.2.0)

Updates `serde_derive` 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)

---
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: implicit-clone
  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: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: quote
  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: 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: average
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: tabled
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: indicatif
  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-minor
  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: git2
  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-minor
  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-minor
  dependency-group: cargo-deps
- dependency-name: strum_macros
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: lipsum
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: pulldown-cmark
  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: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: warp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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
- dependency-name: serde_derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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 Apr 5, 2024
Copy link

github-actions bot commented Apr 5, 2024

Benchmark - core

Yew Master

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.758 ns      │ 3.473 ns      │ 2.767 ns      │ 2.785 ns      │ 100     │ 1000000000

Pull Request

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.471 ns      │ 2.824 ns      │ 2.476 ns      │ 2.484 ns      │ 100     │ 1000000000

Copy link

github-actions bot commented Apr 5, 2024

Benchmark - SSR

Yew Master

Benchmark Round Min (ms) Max (ms) Mean (ms) Standard Deviation
Baseline 10 289.594 292.986 290.446 1.319
Hello World 10 512.019 521.050 515.694 3.176
Function Router 10 1655.211 1677.868 1666.383 7.013
Concurrent Task 10 1005.794 1006.851 1006.335 0.333
Many Providers 10 1134.196 1179.573 1147.843 14.783

Pull Request

Benchmark Round Min (ms) Max (ms) Mean (ms) Standard Deviation
Baseline 10 308.881 309.216 309.033 0.099
Hello World 10 478.028 482.092 479.537 1.400
Function Router 10 1609.905 1635.519 1625.625 8.193
Concurrent Task 10 1005.640 1007.036 1006.283 0.390
Many Providers 10 1095.529 1129.948 1105.097 9.308

Copy link

github-actions bot commented Apr 5, 2024

Size Comparison

examples master (KB) pull request (KB) diff (KB) diff (%)
async_clock 98.875 99.572 +0.697 +0.705%
boids 171.109 171.361 +0.252 +0.147%
communication_child_to_parent 91.503 91.797 +0.294 +0.321%
communication_grandchild_with_grandparent 103.680 103.975 +0.295 +0.284%
communication_grandparent_to_grandchild 99.073 99.363 +0.290 +0.293%
communication_parent_to_child 87.813 88.120 +0.307 +0.349%
contexts 103.742 104.056 +0.313 +0.302%
counter 84.438 84.719 +0.280 +0.332%
counter_functional 84.837 85.128 +0.291 +0.343%
dyn_create_destroy_apps 87.724 88.013 +0.289 +0.330%
file_upload 98.773 99.227 +0.453 +0.459%
function_memory_game 169.336 169.580 +0.244 +0.144%
function_router 345.678 344.233 -1.444 -0.418%
function_todomvc 159.550 159.708 +0.158 +0.099%
futures 227.017 N/A N/A N/A
game_of_life 108.374 108.522 +0.148 +0.137%
immutable 188.333 188.434 +0.101 +0.053%
inner_html 78.621 78.921 +0.300 +0.381%
js_callback 107.136 107.660 +0.524 +0.489%
keyed_list 196.635 196.936 +0.301 +0.153%
mount_point 81.485 81.762 +0.276 +0.339%
nested_list 112.415 112.748 +0.333 +0.296%
node_refs 89.015 89.329 +0.314 +0.353%
password_strength 1705.617 1700.842 -4.775 -0.280%
portals 91.921 92.236 +0.315 +0.343%
router 314.983 313.660 -1.323 -0.420%
simple_ssr 138.925 139.564 +0.640 +0.460%
ssr_router 383.146 383.681 +0.534 +0.139%
suspense 113.793 114.099 +0.306 +0.269%
timer 87.284 87.739 +0.455 +0.521%
timer_functional 96.104 96.477 +0.373 +0.388%
todomvc 140.312 140.589 +0.276 +0.197%
two_apps 84.176 84.463 +0.287 +0.341%
web_worker_fib 133.777 134.259 +0.481 +0.360%
web_worker_prime 183.818 184.396 +0.578 +0.315%
webgl 81.313 81.612 +0.299 +0.368%

✅ None of the examples has changed their size significantly.

Copy link
Author

dependabot bot commented on behalf of github Apr 12, 2024

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

@dependabot dependabot bot closed this Apr 12, 2024
@dependabot dependabot bot deleted the dependabot/cargo/cargo-deps-1fc0c8ce18 branch April 12, 2024 20:30
# for free to join this conversation on GitHub. Already have an account? # 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