Bump the cargo-deps group with 42 updates
Bumps the cargo-deps group with 42 updates:
| Package | From | To |
|---|---|---|
| gloo | 0.10.0 |
0.11.0 |
| indexmap | 2.0.2 |
2.2.3 |
| wasm-bindgen | 0.2.87 |
0.2.91 |
| thiserror | 1.0.50 |
1.0.55 |
| futures | 0.3.29 |
0.3.30 |
| serde | 1.0.190 |
1.0.196 |
| web-sys | 0.3.64 |
0.3.68 |
| wasm-bindgen-futures | 0.4.37 |
0.4.41 |
| tokio | 1.33.0 |
1.36.0 |
| wasm-bindgen-test | 0.3.37 |
0.3.41 |
| trybuild | 1.0.85 |
1.0.89 |
| gloo-worker | 0.4.1 |
0.5.0 |
| proc-macro2 | 1.0.69 |
1.0.78 |
| quote | 1.0.33 |
1.0.35 |
| syn | 2.0.38 |
2.0.49 |
| once_cell | 1.18.0 |
1.19.0 |
| prettyplease | 0.2.15 |
0.2.16 |
| divan | 0.1.1 |
0.1.13 |
| getrandom | 0.2.10 |
0.2.12 |
| tabled | 0.14.0 |
0.15.0 |
| indicatif | 0.17.7 |
0.17.8 |
| serde_json | 1.0.107 |
1.0.113 |
| clap | 4.4.7 |
4.5.0 |
| anyhow | 1.0.75 |
1.0.79 |
| chrono | 0.4.31 |
0.4.34 |
| git2 | 0.18.1 |
0.18.2 |
| 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.10.0 |
| fake | 2.9.1 |
2.9.2 |
| time | 0.3.30 |
0.3.34 |
| 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 |
| serde_derive | 1.0.190 |
1.0.196 |
Updates gloo from 0.10.0 to 0.11.0
Commits
- See full diff in compare view
Updates indexmap from 2.0.2 to 2.2.3
Changelog
Sourced from indexmap's changelog.
2.2.3
- Added
move_indexandswap_indicesmethods toIndexedEntry,OccupiedEntry, andRawOccupiedEntryMut, functioning like the existing methods onIndexMap.- Added
shift_insertmethods onVacantEntryandRawVacantEntryMut, as well asshift_insert_hashed_nocheckon the latter, to insert the new entry at a particular index.- Added
shift_insertmethods onIndexMapandIndexSetto 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, andRawEntryMut::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_entrymethod finds an entry by its index for in-place manipulation.The
Keysiterator now implementsIndex<usize>for quick access to the entry's key, compared to indexing the map to get the value.The new
IndexMap::spliceandIndexSet::splicemethods will drain the given range as an iterator, and then replace that range with entries from an input iterator.The new trait
RawEntryApiV1offers opt-in access to a raw entry API forIndexMap, corresponding to the unstable API onHashSetas of Rust 1.75.Many
IndexMapandIndexSetmethods have relaxed their type constraints, e.g. removingK: Hashon methods that don't actually need to hash.Removal methods
remove,remove_entry, andtakeare now deprecated in favor of theirshift_orswap_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 fromHashMapandHashSettoward the prefixed methods.2.1.0
- Empty slices can now be created with
map::Slice::{new, new_mut}andset::Slice::new. In addition,Slice::new,len, andis_emptyare
... (truncated)
Commits
406bbdbMerge pull request #312 from cuviper/release-2.2.33b79b87Release 2.2.38e6753cMerge pull request #310 from cuviper/shift_inserte3ff25bMerge pull request #311 from cuviper/test_debug2a33977Fully mask the"test_debug"code from normal builds8c206efTest shift_insert that moves5debe73IndexSet::swap_indices is O(1) too4572493AddIndexSet::shift_insertbased on map's method3b217caAddIndexMap::shift_insertbased onEntry209e3e1Document equivalence of move_index/swap_indices- Additional commits viewable in compare view
Updates wasm-bindgen from 0.2.87 to 0.2.91
Changelog
Sourced from wasm-bindgen's changelog.
0.2.91
Released 2024-02-06
Added
Added bindings for the
RTCRtpTransceiver.setCodecPreferences()and unstable bindings for theRTCRtpEncodingParameters.scalabilityMode. #3828Add 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_workerandrun_in_service_worker. #3804Accept the
--skipflag withwasm-bindgen-test-runner. #3803Introduce environment variable
WASM_BINDGEN_TEST_NO_ORIGIN_ISOLATIONto disable origin isolation forwasm-bindgen-test-runner. #3807Add bindings for
USBDevice.forget(). #3821Changed
Stabilize
ClipboardEvent. #3791Use immutable buffers in
SubtleCryptomethods. #3797Deprecate
wasm_bindgen_test_configure!srun_in_workerin favor ofrun_in_dedicated_worker. #3804Updated the WebGPU WebIDL to the current draft as of 2024-01-30. Note that this retains the previous update's workaround for
GPUPipelineError, and holds back an update to thebufferargument of theGPUQueue.{writeBuffer,writeTexture}methods. #3816Depreate
--weak-refsandWASM_BINDGEN_WEAKREFin favor of automatic run-time detection. #3822Fixed
... (truncated)
Commits
fe8bc94Prepare v0.2.91 release (#3829)4b6ef26Fixed nighly build ofwasm-bindgen-futures(#3827)22f84e3readme: build badge for Github actions, not Azure pipeline (#3825)3e469b2Deprecate--weak-refsin favor of run-time detection (#3822)1f7942dFix#[wasm_bindgen(js_name = default)]for module imports (#3823)1f019dbEnabled and auto generatedforget()method forUsbDevice(#3821)9e699acAdd deployment note for firstwasm-pack build --target webexample (#3819)305cb25Fixed temporary folder detection on MacOS (#3817)b104788chore(webgpu)!: update to latest WebGPU IDL as of 2024-01-30 (#3816)fb518d3Fix example code in guide (#3813)- Additional commits viewable in compare view
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
Errorimpl (#266)
Commits
6089273Release 1.0.55322a2aeMerge pull request #280 from dtolnay/depinfofd7d7a5Emit dep-info for probe.rs in case sccache needs it447c328Release 1.0.544619db8Merge pull request #279 from dtolnay/depinfo7b53bffMake env-dep:RUSTC_BOOTSTRAP get listed in probe's dep-infoe0500adMerge pull request #277 from dtolnay/nightlyci48cea47Make CI verify that error_generic_member_access works in latest nightlyfe40a50Merge pull request #276 from dtolnay/optionifletelseb97654aRemove option_if_let_else clippy suppression- Additional commits viewable in compare view
Updates futures from 0.3.29 to 0.3.30
Commits
de1a0fdRelease 0.3.3068d2845Remove a redundant space in example (#2816)fdd2ce7Fix broken link inCopyBufAbortabledocs (#2815)272a3c7Use cfg(target_has_atomic) on no-std targetsc179201FillBuf: Do not call poll_fill_buf twicee6735f3FuturesUnordered: Fix clear implementation04d01a0FuturesOrdered: Use 64-bit indexe4aa659remove redundant impl Unpin17851c1provide a mechanism to determine if io read/write halves are from the same st...4910799provide 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
- Fix field names used for the deserialization of
RangeFromandRangeTo(#2653, #2654, #2655, thanks@emilbonnek)v1.0.192
- Allow internal tag field in untagged variant (#2646, thanks
@robsdedude)v1.0.191
- Documentation improvements
Commits
ede9762Release 1.0.196d438c2dMerge pull request #2682 from dtolnay/decimalpointbef110bFormat Unexpected::Float with decimal pointb971ef1Merge pull request #2681 from dtolnay/workspacedeps29d9f69Fix workspace.dependencies default-features future compat warningaecb408Sort workspace dependencies1c675abMerge pull request #2678 from rodoufu/workspaceDependenciesdd61963Adding workspace dependencies111803aMerge pull request #2673 from Sky9x/msrv-badge0024f74Use shields.io's MSRV badges- Additional commits viewable in compare view
Updates web-sys from 0.3.64 to 0.3.68
Commits
- See full diff in compare view
Updates wasm-bindgen-futures from 0.4.37 to 0.4.41
Commits
- See full diff in compare view
Updates tokio from 1.33.0 to 1.36.0
Release notes
Sourced from tokio's releases.
Tokio v1.36.0
1.36.0 (February 2nd, 2024)
Added
- io: add
tokio::io::Join(#6220)- io: implement
AsyncWriteforEmpty(#6235)- net: add support for anonymous unix pipes (#6127)
- net: add
UnixSocket(#6290)- net: expose keepalive option on
TcpSocket(#6311)- sync: add
{Receiver,UnboundedReceiver}::poll_recv_many(#6236)- sync: add
Sender::{try_,}reserve_many(#6205)- sync: add
watch::Receiver::mark_unchanged(#6252)- task: add
JoinSet::try_join_next(#6280)Changed
- io: make
copycooperative (#6265)- io: make
repeatandsinkcooperative (#6254)- io: simplify check for empty slice (#6293)
- process: use pidfd on Linux when available (#6152)
- sync: use AtomicBool in broadcast channel future (#6298)
Documented
- io: clarify
clear_readydocs (#6304)- net: document that
*Fdtraits onTcpSocketare unix-only (#6294)- sync: document FIFO behavior of
tokio::sync::Mutex(#6279)- chore: typographic improvements (#6262)
- runtime: remove obsolete comment (#6303)
- task: fix typo (#6261)
#6220: tokio-rs/tokio#6220 #6235: tokio-rs/tokio#6235 #6127: tokio-rs/tokio#6127 #6290: tokio-rs/tokio#6290 #6311: tokio-rs/tokio#6311 #6236: tokio-rs/tokio#6236 #6205: tokio-rs/tokio#6205 #6252: tokio-rs/tokio#6252 #6280: tokio-rs/tokio#6280 #6265: tokio-rs/tokio#6265 #6254: tokio-rs/tokio#6254 #6293: tokio-rs/tokio#6293 #6238: tokio-rs/tokio#6238 #6152: tokio-rs/tokio#6152 #6298: tokio-rs/tokio#6298 #6262: tokio-rs/tokio#6262 #6303: tokio-rs/tokio#6303 #6261: tokio-rs/tokio#6261
... (truncated)
Commits
eaf81edchore: prepare Tokio v1.36.0 (#6312)53f9e5aci: make sure dictionary words are sorted and unique (#6316)9077762net: expose keepalive option onTcpSocket(#6311)131e7b4ci: add spellchecking (#6297)e53b92aio: clarifyclear_readydocs (#6304)7536132sync: use AtomicBool in broadcast channel future (#6298)b6d0c90macros: fix trait_method breaking change detection (#6308)4846959runtime: remove obsolete comment (#6303)ec30383net: addUnixSocket(#6290)f80bbecio: simplify check for empty slice (#6293)- Additional commits viewable in compare view
Updates wasm-bindgen-test from 0.3.37 to 0.3.41
Commits
- See full diff in compare view
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_codewarning false positive (#253)1.0.87
- Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache
1.0.86
- Support edition 2024 (#250, #252, thanks
@mohe2015)
Commits
e8dfc24Release 1.0.890d77118Merge pull request #255 from dtolnay/rebuild7fd4570Force rebuild on new files in tests directory840b110Merge pull request #254 from dtolnay/builddate7126507Normalize compiler build date note94a33cbAdd test of compiler build date note52caff6Release 1.0.880321a01Merge pull request #253 from dtolnay/deadflockb720ee6Work around dead_code warning in flock implementation0081291Release 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
- Add sleep. by
@futursoloin rustwasm/gloo#163- Add BrowserHistory and BrowserLocation by
@futursoloin rustwasm/gloo#171- Hash-based History type & Unified Location. by
@futursoloin rustwasm/gloo#177- Memory-based History by
@futursoloin rustwasm/gloo#178v0.4.2
What's Changed
- Re-export gloo-utils from gloo by
@jplattein rustwasm/gloo#159- utils: Add body() and document_element() getters by
@jplattein rustwasm/gloo#161- Explain what Gloo is in the README by
@hamza1311in rustwasm/gloo#164- Add console_dbg macro by
@hamza1311in rustwasm/gloo#170Full Changelog: https://github.com/rustwasm/gloo/compare/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.
netVersion "0.6.0"
- Update http crate to 1.0 (#407)
Version "0.5.0"
- Implement
futures_io::AsyncWriteandfutures_io::AsyncReadonWebSocket. This feature is behind a new feature flagio-utilthat 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, Hashfor eventsourceState(#336)- Seanaye/feat/serverside http (#312)
- Fix clippy for Rust 1.67 (#302)
Version "0.2.5"
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
30193c30.5.0e0603acMemory-based History (#178)816b8f1Hash-based History type & Unified Location. (#177)2245cd9Add BrowserHistory and BrowserLocation (#171)91eb9e0Fixesconsole_dbg!andconsole!expression output. Bold src info. (#174)4fb4eb30.4.2d56d2ad0.4.12f45901Add console_dbg macro (#170)a99fcbdAdd sleep. (#163)5b67085utils: Add body() and document_element() getters (#161)- Additional commits viewable in compare view
Updates proc-macro2 from 1.0.69 to 1.0.78
Release notes
Sourced from proc-macro2's releases.
1.0.78
- Expose Span::byte_range (#442)
1.0.77
1.0.76
- Work around
dead_codewarning 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)lint1.0.70
- Add #[track_caller] on
Ident::newso that panics on invalid input are attributed to the caller (#423)
Commits
d850a1dRelease 1.0.786cefaecMerge pull request #442 from dtolnay/byterange1082767Expose Span::byte_rangeda1be4dRelease 1.0.7769fee37Merge pull request #440 from dtolnay/example66a3ef0Raise minimum tested compiler to 1.63d2441c3Add example code for invalidate_current_thread_spans43011bfEnsure invalidate_current_thread_spans has docs even if proc-macro disabled7e7bb0fImprove documentation of invalidate_current_thread_spans64778fcMove invalidate_current_thread_spans to proc_macro2::extra- 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
b01743fRelease 1.0.3557851d7Pull in proc-macro2 sccache fixc777ce6Release 1.0.34e9cb3c2Pull in proc-macro2 build script improvementf8fc16dTest docs.rs documentation build in CI3a9d31fUpdate actions/checkout@v3 -> v4fe2dec4Merge pull request #262 from dtolnay/syn25d33628Update syn 1.0 link to syn 2.0- See full diff in compare view
Updates syn from 2.0.38 to 2.0.49
Release notes
Sourced from syn's releases.
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
DeriveInputasExpr::Verbatimin non-"full" mode, instead of error (#1513)- Support parsing
PatTypewithparse_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
- Documentation improvements
2.0.41
- Support parsing syn::Field in
parse_quote!(#1548)2.0.40
- Fix some edge cases of handling None-delimited groups in expression parser (#1539, #1541, #1542, #1543, #1544, #1545)
2.0.39
Commits
e64c063Release 2.0.49981359cMerge pull request #1590 from dtolnay/streof51298d4Improve error location at eof in LitStr::parse270c633Update test suite to nightly-2024-02-13dc9cf16Remove FilterAttrs trait when unused7dcfac7Ignore dead_code warning in test9831844Update signature of Emitter::emit_diagnostic in nightly-2024-02-079e8033fUpdate test suite to nightly-2024-02-07cb3348cUpdate test suite to nightly-2024-01-2315b9dbcUpdate test suite to nightly-2024-01-19- 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-atomicinstead ofatomic-polyfill, #251.
Commits
c48d3c2Merge pull request #251 from taks/portable-atomic8211d80Fix CI2715aa9v1.19.0dffcae4Fix CIde4cd9dRevert atomic-polyfill featuree26736fFix CI5f88676Use portable_atomic instead of atomic-polyfill874f937clarify that MSRV does bump the minor version3cd6549Merge #245a2eabc9Add--generate-link-to-definitionoption when building on docs.rs- Additional commits viewable in compare view
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
380c7b8Release 0.2.167b9b350Pull in proc-macro2 sccache fix987bea1Merge pull request #65 from dtolnay/testmatchguarde5e9511Add test of parenthesization of struct lit in match guardae86c8cMerge pull request #64 from dtolnay/groupedacdc42eLook into invisible delimiters to determine exterior struct litb2f30c7Merge pull request #63 from dtolnay/structcond1575443Add test of automatic parenthesization of braced structs in cond11ebfabFormat with new rustfmt that handles let-else91033e8Give a variable name before passing boolean arg- Additional commits viewable in compare view
Updates divan from 0.1.1 to 0.1.13
Changelog
Sourced from divan's changelog.
Commits
91ba63dRelease v0.1.133ca9958Depend on exact version fordivan-macrosfe3191aFix missing update todivan-macrosdependency9fe2fbdRelease v0.1.12267aa0fList "Proving Performance" FOSDEM talk as resourced47b1bcDisplayargsvalues viaDebugif noToString39e9c83Add sponsorship links0b577bcRemove needless late initfb68da6Remove redundant#[cfg]25f7e5dAdd docs explaining when to useblack_box- 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_internaltoDescription has been truncated
Benchmark - core
Yew Master
vnode fastest │ slowest │ median │ mean │ samples │ iters
╰─ vnode_clone 2.778 ns │ 4.517 ns │ 4.014 ns │ 3.46 ns │ 100 │ 1000000000
Pull Request
vnode fastest │ slowest │ median │ mean │ samples │ iters
╰─ vnode_clone 2.843 ns │ 3.643 ns │ 2.853 ns │ 2.876 ns │ 100 │ 1000000000
Visit the preview URL for this PR (updated for commit 4a02209):
https://yew-rs-api--pr3606-dependabot-cargo-car-bep92233.web.app
(expires Fri, 23 Feb 2024 03:51:16 GMT)
🔥 via Firebase Hosting GitHub Action 🌎
Benchmark - SSR
Yew Master
| Benchmark | Round | Min (ms) | Max (ms) | Mean (ms) | Standard Deviation |
|---|---|---|---|---|---|
| Baseline | 10 | 289.581 | 289.979 | 289.723 | 0.126 |
| Hello World | 10 | 488.844 | 495.759 | 491.868 | 2.628 |
| Function Router | 10 | 1629.195 | 1682.214 | 1639.902 | 15.367 |
| Concurrent Task | 10 | 1005.755 | 1006.687 | 1006.203 | 0.363 |
| Many Providers | 10 | 1110.490 | 1155.094 | 1130.155 | 13.599 |
Pull Request
| Benchmark | Round | Min (ms) | Max (ms) | Mean (ms) | Standard Deviation |
|---|---|---|---|---|---|
| Baseline | 10 | 309.020 | 310.588 | 309.355 | 0.469 |
| Hello World | 10 | 495.175 | 505.711 | 498.988 | 3.311 |
| Function Router | 10 | 1646.130 | 1684.707 | 1662.834 | 11.177 |
| Concurrent Task | 10 | 1005.928 | 1006.637 | 1006.276 | 0.213 |
| Many Providers | 10 | 1131.737 | 1158.319 | 1147.902 | 8.887 |
Size Comparison
| examples | master (KB) | pull request (KB) | diff (KB) | diff (%) |
|---|---|---|---|---|
| async_clock | 100.529 | 101.136 | +0.606 | +0.603% |
| boids | 173.541 | 173.745 | +0.204 | +0.118% |
| communication_child_to_parent | 93.068 | 93.302 | +0.233 | +0.251% |
| communication_grandchild_with_grandparent | 105.658 | 105.867 | +0.209 | +0.198% |
| communication_grandparent_to_grandchild | 101.046 | 101.257 | +0.211 | +0.209% |
| communication_parent_to_child | 89.417 | 89.640 | +0.223 | +0.249% |
| contexts | 105.827 | 106.066 | +0.239 | +0.226% |
| counter | 86.279 | 86.503 | +0.224 | +0.259% |
| counter_functional | 86.448 | 86.682 | +0.233 | +0.270% |
| dyn_create_destroy_apps | 89.297 | 89.508 | +0.211 | +0.236% |
| file_upload | 100.438 | 100.664 | +0.226 | +0.225% |
| function_memory_game | 172.263 | 175.309 | +3.046 | +1.768% |
| function_router | 350.306 | 349.646 | -0.659 | -0.188% |
| function_todomvc | 162.299 | 165.378 | +3.079 | +1.897% |
| futures | 229.079 | N/A | N/A | N/A |
| game_of_life | 109.982 | 110.199 | +0.217 | +0.197% |
| immutable | 189.688 | 190.459 | +0.771 | +0.407% |
| inner_html | 80.040 | 80.270 | +0.229 | +0.287% |
| js_callback | 109.566 | 109.805 | +0.238 | +0.217% |
| keyed_list | 198.587 | 198.797 | +0.210 | +0.106% |
| mount_point | 82.878 | 83.110 | +0.232 | +0.280% |
| nested_list | 114.642 | 114.855 | +0.214 | +0.187% |
| node_refs | 90.459 | 90.689 | +0.230 | +0.255% |
| password_strength | 1726.013 | 1722.205 | -3.808 | -0.221% |
| portals | 93.750 | 93.996 | +0.246 | +0.263% |
| router | 318.940 | 318.386 | -0.555 | -0.174% |
| simple_ssr | 141.651 | 141.900 | +0.249 | +0.176% |
| ssr_router | 390.172 | 389.502 | -0.670 | -0.172% |
| suspense | 116.145 | 116.376 | +0.231 | +0.199% |
| timer | 88.974 | 89.194 | +0.221 | +0.248% |
| timer_functional | 97.994 | 98.252 | +0.258 | +0.263% |
| todomvc | 142.316 | 145.359 | +3.043 | +2.138% |
| two_apps | 85.588 | 85.828 | +0.240 | +0.281% |
| web_worker_fib | 136.029 | 136.446 | +0.417 | +0.307% |
| web_worker_prime | 186.766 | 188.499 | +1.733 | +0.928% |
| webgl | 82.680 | 82.896 | +0.217 | +0.262% |
⚠️ The following examples have changed their size significantly:
| examples | master (KB) | pull request (KB) | diff (KB) | diff (%) |
|---|---|---|---|---|
| function_memory_game | 172.263 | 175.309 | +3.046 | +1.768% |
| function_todomvc | 162.299 | 165.378 | +3.079 | +1.897% |
| todomvc | 142.316 | 145.359 | +3.043 | +2.138% |
Looks like these dependencies are updatable in another way, so this is no longer needed.