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 across 1 directory with 17 updates #3807

Merged
merged 2 commits into from
Feb 21, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 21, 2025

Bumps the cargo-deps group with 16 updates in the / directory:

Package From To
thiserror 1.0.69 2.0.11
serde 1.0.217 1.0.218
tokise 0.1.0 0.2.0
rand 0.8.5 0.9.0
tabled 0.16.0 0.18.0
serde_json 1.0.138 1.0.139
clap 4.5.29 4.5.30
anyhow 1.0.95 1.0.96
git2 0.19.0 0.20.0
strum 0.26.3 0.27.1
derive_more 1.0.0 2.0.1
strum_macros 0.26.4 0.27.1
pulldown-cmark 0.12.2 0.13.0
fake 2.10.0 4.0.0
uuid 1.13.1 1.14.0
axum 0.7.9 0.8.1

Updates thiserror from 1.0.69 to 2.0.11

Release notes

Sourced from thiserror's releases.

2.0.11

2.0.10

  • Support errors containing a generic type parameter's associated type in a field (#408)

2.0.9

  • Work around missing_inline_in_public_items clippy restriction being triggered in macro-generated code (#404)

2.0.8

  • Improve support for macro-generated derive(Error) call sites (#399)

2.0.7

  • Work around conflict with #[deny(clippy::allow_attributes)] (#397, thanks @​zertosh)

2.0.6

  • Suppress deprecation warning on generated From impls (#396)

2.0.5

  • Prevent deprecation warning on generated impl for deprecated type (#394)

2.0.4

  • Eliminate needless_lifetimes clippy lint in generated From impls (#391, thanks @​matt-phylum)

2.0.3

  • Support the same Path field being repeated in both Debug and Display representation in error message (#383)
  • Improve error message when a format trait used in error message is not implemented by some field (#384)

2.0.2

  • Fix hang on invalid input inside #[error(...)] attribute (#382)

2.0.1

  • Support errors that contain a dynamically sized final field (#375)
  • Improve inference of trait bounds for fields that are interpolated multiple times in an error message (#377)

2.0.0

Breaking changes

  • Referencing keyword-named fields by a raw identifier like {r#type} inside a format string is no longer accepted; simply use the unraw name like {type} (#347)

    This aligns thiserror with the standard library's formatting macros, which gained support for implicit argument capture later than the release of this feature in thiserror 1.x.

    #[derive(Error, Debug)]
    #[error("... {type} ...")]  // Before: {r#type}
    pub struct Error {
        pub r#type: Type,
    }

... (truncated)

Commits
  • 0f532e3 Release 2.0.11
  • 3d15543 Merge pull request #410 from dtolnay/testnostd
  • 1a226ae Disable two more integration tests in no-std mode
  • 8b5f2d7 Fix unused import in test when built without std
  • eecd247 Add CI step to test with "std" disabled
  • 8f2a76b Merge pull request #409 from Maytha8/std-tests
  • 693a6cd Add feature gate to tests that use std
  • 349f696 Release 2.0.10
  • 6cd87bc Merge pull request #408 from dtolnay/assoctype
  • 6b3e1e5 Generate trait bounds on associated types
  • Additional commits viewable in compare view

Updates serde from 1.0.217 to 1.0.218

Release notes

Sourced from serde's releases.

v1.0.218

  • Documentation improvements
Commits
  • 7bfd518 Release 1.0.218
  • 723a949 Merge pull request #2895 from dtolnay/stabledoc
  • 2b44efb Point standard library links to stable
  • 03dc0fc Merge pull request #2894 from dtolnay/doclink
  • 85cb0c4 Convert html links to intra-doc links
  • abe7194 Update ui test suite to nightly-2025-02-12
  • aaccac7 Unset doc-scrape-examples for lib target
  • 7cd4d84 Update ui test suite to nightly-2025-02-07
  • 04ff3e8 More precise gitignore patterns
  • dc3031b Remove *.sw[po] from gitignore
  • Additional commits viewable in compare view

Updates tokise from 0.1.0 to 0.2.0

Release notes

Sourced from tokise's releases.

v0.2.0

What's Changed

New Contributors

Full Changelog: yewstack/tokise@v0.1.0...v0.2.0

Commits

Updates rand from 0.8.5 to 0.9.0

Changelog

Sourced from rand's changelog.

[0.9.0] - 2025-01-27

Security and unsafe

  • Policy: "rand is not a crypto library" (#1514)
  • Remove fork-protection from ReseedingRng and ThreadRng. Instead, it is recommended to call ThreadRng::reseed on fork. (#1379)
  • Use zerocopy to replace some unsafe code (#1349, #1393, #1446, #1502)

Dependencies

  • Bump the MSRV to 1.63.0 (#1207, #1246, #1269, #1341, #1416, #1536); note that 1.60.0 may work for dependents when using --ignore-rust-version
  • Update to rand_core v0.9.0 (#1558)

Features

  • Support std feature without getrandom or rand_chacha (#1354)
  • Enable feature small_rng by default (#1455)
  • Remove implicit feature rand_chacha; use std_rng instead. (#1473)
  • Rename feature serde1 to serde (#1477)
  • Rename feature getrandom to os_rng (#1537)
  • Add feature thread_rng (#1547)

API changes: rand_core traits

  • Add fn RngCore::read_adapter implementing std::io::Read (#1267)
  • Add trait CryptoBlockRng: BlockRngCore; make trait CryptoRng: RngCore (#1273)
  • Add traits TryRngCore, TryCryptoRng (#1424, #1499)
  • Rename fn SeedableRng::from_rng -> try_from_rng and add infallible variant fn from_rng (#1424)
  • Rename fn SeedableRng::from_entropy -> from_os_rng and add fallible variant fn try_from_os_rng (#1424)
  • Add bounds Clone and AsRef to associated type SeedableRng::Seed (#1491)

API changes: Rng trait and top-level fns

  • Rename fn rand::thread_rng() to rand::rng() and remove from the prelude (#1506)
  • Remove fn rand::random() from the prelude (#1506)
  • Add top-level fns random_iter, random_range, random_bool, random_ratio, fill (#1488)
  • Re-introduce fn Rng::gen_iter as random_iter (#1305, #1500)
  • Rename fn Rng::gen to random to avoid conflict with the new gen keyword in Rust 2024 (#1438)
  • Rename fns Rng::gen_range to random_range, gen_bool to random_bool, gen_ratio to random_ratio (#1505)
  • Annotate panicking methods with #[track_caller] (#1442, #1447)

API changes: RNGs

  • Fix <SmallRng as SeedableRng>::Seed size to 256 bits (#1455)
  • Remove first parameter (rng) of ReseedingRng::new (#1533)

API changes: Sequences

  • Split trait SliceRandom into IndexedRandom, IndexedMutRandom, SliceRandom (#1382)
  • Add IndexedRandom::choose_multiple_array, index::sample_array (#1453, #1469)

API changes: Distributions: renames

  • Rename module rand::distributions to rand::distr (#1470)
  • Rename distribution Standard to StandardUniform (#1526)
  • Move distr::Slice -> distr::slice::Choose, distr::EmptySlice -> distr::slice::Empty (#1548)
  • Rename trait distr::DistString -> distr::SampleString (#1548)
  • Rename distr::DistIter -> distr::Iter, distr::DistMap -> distr::Map (#1548)

... (truncated)

Commits

Updates tabled from 0.16.0 to 0.18.0

Changelog

Sourced from tabled's changelog.

[0.18.0] - 2025-07-02

Added

  • Added #[tabled(display(Type, "function", arg1, arg2))] - a derive helper (propoused by @​georgewhewell).
  • Added Table::kv - a new type of table layout.
  • Added new Span logic with negative and 0 spans.
  • Added LineText::align to stick text on border to specific location.
  • Added LayoutIterator to navigate Table::kv easier.
  • Added Tabled implementation for Option<T>.

Changed

  • Renamed #[tabled(display_with)] into #[tabled(display)].
  • Changed MSRV to the 1.83.
  • Removed owo-colors dependency.
  • Migrated owo-colors to 3.5 (by @​joshtriplett).
  • Migrated heck to 0.5 (by @​marxin).
  • Migrated syn to 2.0 (By @​wyatt-herkamp).

Fixed

[0.17.0] - 2024-23-11

Added

  • Added Color::rgb_fg, Color::rgb_bg (by @​k86td)
  • Added ObjectIterator: so things like Rows::new(1..10).step_by(2) be possible.
  • Added support for Rows::last() + 100 and Columns::last() + 100 add operation.
  • Added left|right specifiers to PriorityMax and PriorityMin.
  • Added Priority factory to create different priorities. Basically a more convinient way.
  • Added a descriptive error message to testing_table::assert_table.
  • Added Builder::from(HashMap::new()) implementation.
  • Added CleanCharset::clean("") function for cases where we build a table by Builder.

Changed

  • Switched back to upstream unicode-width crate (by @​joshtriplett).
  • Migrated from proc-macro-error to proc-macro-error2 (by @​welpo).
  • Refactorings to improve code quality further.
  • Made Charset::clean method more presise so we can hopefully work with latest unicode-width.
  • Improved Wrap algorithm. As it was misstreating new lines characters.
  • Splited Padding to Padding and PaddingColor.
  • Splited Margin to Margin and MarginColor.
  • Changed Highlight interface.
  • Changed Border and BorderColor implementation when applied to table, so it sets a frame rather then all cells.
  • Renamed Disable into Remove.
  • Set CI MSRV check to 1.66.

... (truncated)

Commits

Updates serde_json from 1.0.138 to 1.0.139

Release notes

Sourced from serde_json's releases.

v1.0.139

  • Documentation improvements
Commits
  • 4d4f53c Release 1.0.139
  • 5d6b32f Merge pull request #1242 from dtolnay/writefloat
  • e5bb8bd Document behavior of write_f32/f64 on non-finite floats
  • 7a79781 Merge pull request #1241 from dtolnay/doclink
  • 13591f1 Convert html links to intra-doc links
  • 1d7378e Unset doc-scrape-examples for lib target
  • 1174c5f Resolve unnecessary_semicolon pedantic clippy lint
  • See full diff in compare view

Updates clap from 4.5.29 to 4.5.30

Release notes

Sourced from clap's releases.

v4.5.30

[4.5.30] - 2025-02-17

Fixes

  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions
Changelog

Sourced from clap's changelog.

[4.5.30] - 2025-02-17

Fixes

  • (assert) Allow num_args(0..=1) to be used with SetTrue
  • (assert) Clean up rendering of takes_values assertions
Commits
  • f40b37f chore: Release
  • 63bfe1a docs: Update changelog
  • d6bd7e2 Merge pull request #5763 from epage/complete
  • 0887593 fix(complete): Change ValueHint::Unknown to Other, from AnyPath
  • 61ebe72 chore: Release
  • 2e3fcc6 docs: Update changelog
  • 13dad4c Merge pull request #5759 from clap-rs/renovate/unicode-width-0.x
  • 3ca44c7 Merge pull request #5758 from clap-rs/renovate/terminal_size-0.x
  • d71ae66 Merge pull request #5760 from clap-rs/renovate/stable-1.x
  • a25c734 chore(deps): Update dependency STABLE to v1.81.0
  • Additional commits viewable in compare view

Updates anyhow from 1.0.95 to 1.0.96

Release notes

Sourced from anyhow's releases.

1.0.96

  • Documentation improvements
Commits
  • f0aa0d3 Release 1.0.96
  • bc33c24 Convert html links to intra-doc links
  • 1cff785 Unset doc-scrape-examples for lib target
  • d71c806 More precise gitignore patterns
  • 3e40975 Remove **/*.rs.bk from project-specific gitignore
  • b880dd0 Ignore Cargo-generated tests/crate/target directory
  • 8891ce3 Merge pull request #404 from dtolnay/missingabi
  • 51a173e Ignore missing_abi lint in nightly-2025-01-16
  • 4d71a84 Ignore double_ended_iterator_last clippy lint
  • af0937e Update ui test suite to nightly-2025-01-02
  • Additional commits viewable in compare view

Updates git2 from 0.19.0 to 0.20.0

Changelog

Sourced from git2's changelog.

0.20.0 - 2025-01-04

0.19.0...0.20.0

Added

  • Debug is now implemented for transport::Service #1074
  • Added Repository::commondir #1079
  • Added Repository::merge_base_octopus #1088
  • Restored impls for PartialOrd, Ord, and Hash for bitflags types that were inadvertently removed in a prior release. #1096
  • Added CheckoutBuilder::disable_pathspec_match #1107
  • Added PackBuilder::write #1110

Changed

  • ❗ Updated to libgit2 1.9.0 #1111
  • ❗ Removed the ssh_key_from_memory Cargo feature, it was unused. #1087
  • ❗ Errors from Tree::walk are now correctly reported to the caller. #1098
  • ❗ The trace_set callback now takes a &[u8] instead of a &str. #1071
  • Error::last_error now returns Error instead of Option<Error>. #1072

Fixed

  • Fixed OdbReader::read return value. #1061
  • When a credential helper executes a shell command, don't pop open a console window on Windows. #1075
Commits
  • 14cdc15 Merge pull request #1115 from ehuss/lock-locked
  • cbf9dd4 Merge pull request #1116 from ehuss/update-time
  • e46a1f9 Check that Cargo.lock is not outdated in CI
  • a4bd932 Update the time dev-dependency
  • ca65651 Merge pull request #1113 from ehuss/cargo-lock
  • e16a3f9 Merge pull request #1112 from ehuss/check-cfg
  • f538a99 Add a Cargo.lock
  • 8ce89e2 Squelch the warning about libgit2_vendored check-cfg
  • 92d96ac Merge pull request #1072 from vcfxb/remove-error-unwraps
  • 8977c0c Merge pull request #1071 from vcfxb/fix-tracing-ub
  • Additional commits viewable in compare view

Updates strum from 0.26.3 to 0.27.1

Release notes

Sourced from strum's releases.

v0.27.1

What's Changed

New Contributors

Full Changelog: Peternator7/strum@v0.27.0...v0.27.1

v0.27.0

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from strum's changelog.

0.27.1

  • #414: Fix docrs build error.

  • #417: Mention parse_error_ty and parse_error_fn that had been left out of the docs accidentally.

  • #421#331: Implement #[strum(transparent)] attribute on IntoStaticStr, Display and AsRefStr that forwards the implmenentation to the inner value. Note that for static strings, the inner value must be convertible to an &'static str.

    #[derive(strum::Display)]
    enum SurveyResponse {
      Yes,
      No,
      #[strum(transparent)]
      Other(String)
    }
    fn main() {
    let response = SurveyResponse::Other("It was good".into());
    println!("Question: Did you have fun?");
    println!("Answer: {}", response);
    // prints: Answer: It was good
    }

0.27.0

Highlights

  • #407: Display is now correctly derived in [no_std] projects.
  • #402: EnumIter now implements Send + Sync
  • #400: EnumTryAs now handles attributes on variant fields correctly.
  • #398: strum is now on rust 2021
  • #391: EnumProperties correctly implements get_bool and get_int finally. 🎉
  • #380: FromString now supports 2 additional attributes, parse_error_ty and parse_error_fn that can be added to use a custom error type rather than the default strum error message.
    • #410: These attributes accept a Path rather than a String to improve behavior with rust-analyzer.

Breaking Changes

  • #384: MSRV is now 1.66.1
  • #391: EnumProperties doesn't provide default implementations anymore. This would have required you to manually implement this trait which should be very uncommon.

0.26.4 (strum_macros)

  • #360: Fixes bug introduced with new string interpolation feature where

... (truncated)

Commits

Updates derive_more from 1.0.0 to 2.0.1

Release notes

Sourced from derive_more's releases.

2.0.1

API docs Changelog

2.0.0 - The first release is never perfect

Breaking changes

  • use derive_more::SomeTrait now imports macro only. Importing macro with its trait along is possible now via use derive_more::with_trait::SomeTrait. (#406)
  • Top-level #[display("...")] attribute on an enum now has defaulting behavior instead of replacing when no wrapping is possible (no _variant placeholder). (#395)

Fixed

  • Associated types of type parameters not being treated as generics in Debug and Display expansions. (#399)
  • unreachable_code warnings on generated code when ! (never type) is used. (#404)
  • Ambiguous associated item error when deriving TryFrom, TryInto or FromStr with an associated item called Error or Err respectively. (#410)
  • Top-level #[display("...")] attribute on an enum being incorrectly treated as transparent or wrapping. (#395)
  • Omitted raw identifiers in Debug and Display expansions. (#431)
  • Incorrect rendering of raw identifiers as field names in Debug expansions. (#431)
  • Top-level #[display("...")] attribute on an enum not working transparently for directly specified fields. (#438)
  • Incorrect dereferencing of unsized fields in Debug and Display expansions. (#440)

New Contributors

Full Changelog: JelteF/derive_more@v1.0.0...v2.0.0

Changelog

Sourced from derive_more's changelog.

2.0.1 - 2025-02-03

Added

  • Add crate metadata for the Rust Playground. This makes sure that the Rust Playground will have all derive_more features available once selectors crate updates its derive_more version. (#445)

2.0.0 - 2025-02-03

Breaking changes

  • use derive_more::SomeTrait now imports macro only. Importing macro with its trait along is possible now via use derive_more::with_trait::SomeTrait. (#406)
  • Top-level #[display("...")] attribute on an enum now has defaulting behavior instead of replacing when no wrapping is possible (no _variant placeholder). (#395)

Fixed

  • Associated types of type parameters not being treated as generics in Debug and Display expansions. (#399)
  • unreachable_code warnings on generated code when ! (never type) is used. (#404)
  • Ambiguous associated item error when deriving TryFrom, TryInto or FromStr with an associated item called Error or Err respectively. (#410)
  • Top-level #[display("...")] attribute on an enum being incorrectly treated as transparent or wrapping. (#395)
  • Omitted raw identifiers in Debug and Display expansions. (#431)
  • Incorrect rendering of raw identifiers as field names in Debug expansions. (#431)
  • Top-level #[display("...")] attribute on an enum not working transparently for directly specified fields. (#438)
  • Incorrect dereferencing of unsized fields in Debug and Display expansions. (#440)

0.99.19 - 2025-02-03

  • Add crate metadata for the Rust Playground.
Commits

Updates strum_macros from 0.26.4 to 0.27.1

Release notes

Sourced from strum_macros's releases.

v0.27.1

What's Changed

New Contributors

Full Changelog: Peternator7/strum@v0.27.0...v0.27.1

v0.27.0

What's Changed

Bumps the cargo-deps group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.69` | `2.0.11` |
| [serde](https://github.com/serde-rs/serde) | `1.0.217` | `1.0.218` |
| [tokise](https://github.com/yewstack/tokise) | `0.1.0` | `0.2.0` |
| [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.9.0` |
| [tabled](https://github.com/zhiburt/tabled) | `0.16.0` | `0.18.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.138` | `1.0.139` |
| [clap](https://github.com/clap-rs/clap) | `4.5.29` | `4.5.30` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.95` | `1.0.96` |
| [git2](https://github.com/rust-lang/git2-rs) | `0.19.0` | `0.20.0` |
| [strum](https://github.com/Peternator7/strum) | `0.26.3` | `0.27.1` |
| [derive_more](https://github.com/JelteF/derive_more) | `1.0.0` | `2.0.1` |
| [strum_macros](https://github.com/Peternator7/strum) | `0.26.4` | `0.27.1` |
| [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) | `0.12.2` | `0.13.0` |
| [fake](https://github.com/cksac/fake-rs) | `2.10.0` | `4.0.0` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.13.1` | `1.14.0` |
| [axum](https://github.com/tokio-rs/axum) | `0.7.9` | `0.8.1` |



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

Updates `serde` from 1.0.217 to 1.0.218
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.217...v1.0.218)

Updates `tokise` from 0.1.0 to 0.2.0
- [Release notes](https://github.com/yewstack/tokise/releases)
- [Commits](yewstack/tokise@v0.1.0...v0.2.0)

Updates `rand` from 0.8.5 to 0.9.0
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.8.5...0.9.0)

Updates `tabled` from 0.16.0 to 0.18.0
- [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zhiburt/tabled/commits)

Updates `serde_json` from 1.0.138 to 1.0.139
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.138...v1.0.139)

Updates `clap` from 4.5.29 to 4.5.30
- [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.5.29...clap_complete-v4.5.30)

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

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

Updates `strum` from 0.26.3 to 0.27.1
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](Peternator7/strum@v0.26.3...v0.27.1)

Updates `derive_more` from 1.0.0 to 2.0.1
- [Release notes](https://github.com/JelteF/derive_more/releases)
- [Changelog](https://github.com/JelteF/derive_more/blob/master/CHANGELOG.md)
- [Commits](JelteF/derive_more@v1.0.0...v2.0.1)

Updates `strum_macros` from 0.26.4 to 0.27.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.27.1)

Updates `pulldown-cmark` from 0.12.2 to 0.13.0
- [Release notes](https://github.com/raphlinus/pulldown-cmark/releases)
- [Commits](pulldown-cmark/pulldown-cmark@v0.12.2...v0.13.0)

Updates `fake` from 2.10.0 to 4.0.0
- [Release notes](https://github.com/cksac/fake-rs/releases)
- [Changelog](https://github.com/cksac/fake-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/cksac/fake-rs/commits)

Updates `uuid` from 1.13.1 to 1.14.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.13.1...v1.14.0)

Updates `axum` from 0.7.9 to 0.8.1
- [Release notes](https://github.com/tokio-rs/axum/releases)
- [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/axum/commits)

Updates `serde_derive` from 1.0.217 to 1.0.218
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.217...v1.0.218)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-deps
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: tokise
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: rand
  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: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: git2
  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: derive_more
  dependency-type: direct:production
  update-type: version-update:semver-major
  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-minor
  dependency-group: cargo-deps
- dependency-name: fake
  dependency-type: direct:production
  update-type: version-update:semver-major
  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: 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 Feb 21, 2025
github-actions[bot]
github-actions bot previously approved these changes Feb 21, 2025
Copy link

github-actions bot commented Feb 21, 2025

Size Comparison

examples master (KB) pull request (KB) diff (KB) diff (%)

✅ None of the examples has changed their size significantly.

Copy link

github-actions bot commented Feb 21, 2025

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

https://yew-rs-api--pr3807-dependabot-cargo-car-0phaye4u.web.app

(expires Fri, 28 Feb 2025 05:55:15 GMT)

🔥 via Firebase Hosting GitHub Action 🌎

Copy link

github-actions bot commented Feb 21, 2025

Benchmark - core

Yew Master

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.744 ns      │ 2.8 ns        │ 2.748 ns      │ 2.751 ns      │ 100     │ 1000000000

Pull Request

vnode           fastest       │ slowest       │ median        │ mean          │ samples │ iters
╰─ vnode_clone  2.771 ns      │ 3.527 ns      │ 2.774 ns      │ 2.798 ns      │ 100     │ 1000000000

Copy link

Benchmark - SSR

Yew Master

Benchmark Round Min (ms) Max (ms) Mean (ms) Standard Deviation
Baseline 10 290.993 291.570 291.154 0.173
Hello World 10 481.093 541.205 494.710 17.644
Function Router 10 1618.355 1650.559 1633.765 9.661
Concurrent Task 10 1004.944 1007.201 1006.374 0.647
Many Providers 10 1113.936 1167.824 1145.731 16.742

Pull Request

Benchmark Round Min (ms) Max (ms) Mean (ms) Standard Deviation
Baseline 10 290.923 294.195 291.324 1.010
Hello World 10 481.492 503.035 488.433 6.281
Function Router 10 1616.884 1639.943 1622.392 6.983
Concurrent Task 10 1005.501 1007.336 1006.324 0.646
Many Providers 10 1077.406 1108.490 1088.617 10.645

@Madoshakalaka Madoshakalaka merged commit 960c4f2 into master Feb 21, 2025
25 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/cargo-deps-f73fc09efa branch February 21, 2025 06:03
# 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.

1 participant