crazyscot / brot3

Yet Another Fractal Plotter
Other
0 stars 0 forks source link

Bump the cargo group across 1 directory with 8 updates #104

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the cargo group with 8 updates in the / directory:

Package From To
anyhow 1.0.82 1.0.86
anstyle 1.0.6 1.0.7
num-complex 0.4.5 0.4.6
palette 0.7.5 0.7.6
iai-callgrind 0.10.2 0.11.0
serde_json 1.0.116 1.0.117
serde 1.0.198 1.0.202
tauri-build 1.5.1 1.5.2

Updates anyhow from 1.0.82 to 1.0.86

Release notes

Sourced from anyhow's releases.

1.0.86

  • Fix parse error in ensure! with non-literal after minus sign (#373)

1.0.85

  • Improve ensure! macro's rules to unblock some rustc pretty-printer improvements (#368, #371)

1.0.84

  • Disallow calling ensure! through a Not impl for a type that is not bool (#367)

1.0.83

  • Integrate compile-time checking of cfgs (#363)
Commits
  • 8ea1819 Release 1.0.86
  • 0a1b405 Merge pull request #373 from dtolnay/minusneg
  • e0c74f2 Ensure $:literal never matches negative literal
  • 013c66e Fix parse error with non-literal after minus sign
  • ca7aff7 Add binary operator ensure tests
  • 2737bbe Release 1.0.85
  • 82b8b34 Merge pull request #371 from dtolnay/split
  • ad78d70 Preserve more token spans in expression parser
  • 5cce406 Parse comparison operators before other binary operators
  • 7205394 Merge pull request #369 from dtolnay/tokensplit
  • Additional commits viewable in compare view


Updates anstyle from 1.0.6 to 1.0.7

Commits


Updates num-complex from 0.4.5 to 0.4.6

Changelog

Sourced from num-complex's changelog.

Release 0.4.6 (2024-05-07)

Contributors: @​cuviper

Commits


Updates palette from 0.7.5 to 0.7.6

Changelog

Sourced from palette's changelog.

Version 0.7.6 - 2024-04-28

  • #390[390]: Add From implementations for changing Rgb component types between u8, f32 and f64.
  • #342[342]: Implement CAM16. Closes #199[199].
  • #386[386]: Fix angle conversion from f32 to u8. Closes #385[385].
  • #384[384]: Add traits for color schemes from traditional color theory.
Commits
  • 43ff0a6 Merge pull request #397 from Ogeon/prepare_0.7.6
  • bd08f74 Prepare release 0.7.6
  • 52bebbd Merge pull request #392 from Ogeon/deny_doc_warnings
  • 7fdd0e1 Merge pull request #395 from Ogeon/update_release_actions
  • 0f520c4 Update the dependencies of custom actions
  • 68410a6 Merge pull request #393 from Ogeon/rename_analogous2
  • aa19895 Merge pull request #394 from Ogeon/coverage_components
  • b8ad2ee Try to use components for coverage
  • 8074a98 Rename analogous2 to analogous_secondary
  • 7be86e5 Fix documentation warnings
  • Additional commits viewable in compare view


Updates iai-callgrind from 0.10.2 to 0.11.0

Release notes

Sourced from iai-callgrind's releases.

v0.11.0

Changelog

[0.11.0] - 2024-05-09

The default EventKind for RegressionConfig and FlamegraphConfig changed, to EventKind::Ir so, if you're updating from a previous version of iai-callgrind, please read carefully!

Added

  • (#71): Add a DHAT cost summary similar to the summary of callgrind events in the benchmark run output. Thanks to @​dewert99.
  • (#80): Add pre-built iai-callgrind-runner binaries for most valgrind supported targets to the github release pages. iai-callgrind-runner can now also be installed with cargo binstall. The github release pages from v0.7.0 upwards have been updated to include the pre-built binaries, too.
  • (#88): Support filtering benchmarks by name. This is a command-line option only and the filter can be given as positional argument in cargo bench -- FILTER. Specifying command-line arguments in addition to the FILTER still works.
  • (#144): Verify compatibility with latest valgrind release 3.23.0 and update client requests to newly supported target arm64/freebsd.
  • (#152): Support comparison of benches in library benchmark functions by id.
  • (#158): Support environment variable IAI_CALLGRIND_<TRIPLE>_VALGRIND_INCLUDE with <TRIPLE> being the hosts target triple. This variable takes precedence over the more generic IAI_CALLGRIND_VALGRIND_INCLUDE environment variable. Thanks to @​qRoC

Changed

  • (#94): Support running iai-callgrind benchmarks without cache simulation (--cache-sim=no). Previously, specifying this option emitted a warning. Note that running the benchmarks with --cache-sim=no implies that there is also no estimated cycles calculation.
  • (#106): Due to #94, the default EventKind for RegressionConfig and FlamegraphConfig changed from EventKind::EstimatedCycles to EventKind::Ir.
  • Updated locked dependencies to their most recent version
  • Due to backwards incompatible changes to the summary schema the schema version was updated v1 -> v2. The current schema file is stored in iai-callgrind-runner/schemas/summary.v2.schema.json

Fixed

  • (#86): Fix positional arguments meant as filter as in cargo bench -- FILTER caused iai-callgrind to crash.
  • (#110): Fix example in README. Thanks to @​jembishop
  • (#145): Fixed an error on freebsd when copying fixtures in binary benchmarks.

New Contributors

Full Changelog: https://github.com/iai-callgrind/iai-callgrind/compare/v0.10.2...v0.11.0

Changelog

Sourced from iai-callgrind's changelog.

[0.11.0] - 2024-05-09

The default EventKind for RegressionConfig and FlamegraphConfig changed, to EventKind::Ir so, if you're updating from a previous version of iai-callgrind, please read carefully!

Added

  • (#71): Add a DHAT cost summary similar to the summary of callgrind events in the benchmark run output. Thanks to @​dewert99.
  • (#80): Add pre-built iai-callgrind-runner binaries for most valgrind supported targets to the github release pages. iai-callgrind-runner can now also be installed with cargo binstall.
  • (#88): Support filtering benchmarks by name. This is a command-line option only and the filter can be given as positional argument in cargo bench -- FILTER. Specifying command-line arguments in addition to the FILTER still works.
  • (#144): Verify compatibility with latest valgrind release 3.23.0 and update client requests to newly supported target arm64/freebsd.
  • (#152): Support comparison of benches in library benchmark functions by id.
  • (#158): Support environment variable IAI_CALLGRIND_<TRIPLE>_VALGRIND_INCLUDE with <TRIPLE> being the hosts target triple. This variable takes precedence over the more generic IAI_CALLGRIND_VALGRIND_INCLUDE environment variable. Thanks to @​qRoC

Changed

  • (#94): Support running iai-callgrind benchmarks without cache simulation (--cache-sim=no). Previously, specifying this option emitted a warning. Note that running the benchmarks with --cache-sim=no implies that there is also no estimated cycles calculation.
  • (#106): Due to #94, the default EventKind for RegressionConfig and FlamegraphConfig changed from EventKind::EstimatedCycles to EventKind::Ir.
  • Updated locked dependencies to their most recent version
  • Due to backwards incompatible changes to the summary schema the schema version was updated v1 -> v2. The current schema file is stored in iai-callgrind-runner/schemas/summary.v2.schema.json

Fixed

  • (#86): Fix positional arguments meant as filter as in cargo bench -- FILTER cause

... (truncated)

Commits
  • 843239d cicd(release): Remove x86_64-pc-solaris target since compilation fails
  • c94123c cicd(release): Fix deprecated sun solaris target to x86_64_pc_solaris
  • 602e32c Merge branch 'release'
  • 709136a Update CHANGELOG
  • c7c360f Update iai-callgrind v0.10.2 -> v0.11.0
  • 08e1bc1 Revert changes to summary schema v1 to state of iai-callgrind v0.10.2
  • 36ce015 Update iai-callgrind summary schema version v1 -> v2
  • adc164e Merge pull request #158 from gamma0987/101-support-target-triple-in-valgrind-...
  • fddc28e feat: Allow valgrind include by triple environment variable only in upper case
  • 044ae3e feat: add support the valgrind include by triple
  • Additional commits viewable in compare view


Updates serde_json from 1.0.116 to 1.0.117

Release notes

Sourced from serde_json's releases.

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)
Commits


Updates serde from 1.0.198 to 1.0.202

Release notes

Sourced from serde's releases.

v1.0.202

  • Provide public access to RenameAllRules in serde_derive_internals (#2743)

v1.0.201

  • Resolve unexpected_cfgs warning (#2737)

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)

v1.0.199

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#2732, thanks @​aatifsyed)
Commits
  • 9e32a40 Release 1.0.202
  • 87f635e Release serde_derive_internals 0.29.1
  • d4b2dfb Merge pull request #2743 from dtolnay/renameallrules
  • f6ab0bc Provide public access to RenameAllRules in serde_derive_internals
  • 48cc2a6 Replace use of a syn From impl
  • 3202a68 Skip rerunning build script on library code changes
  • b4f1bc1 Release 1.0.201
  • 029ab46 Merge pull request #2737 from dtolnay/checkcfg
  • 220ca0c Resolve unexpected_cfgs warning
  • 20306f4 Fix cfg on test_systemtime_overflow
  • Additional commits viewable in compare view


Updates tauri-build from 1.5.1 to 1.5.2

Release notes

Sourced from tauri-build's releases.

tauri-build v1.5.2

Updating crates.io index

Fetching advisory database from `https://github.com/RustSec/advisory-db.git`
      Loaded 623 security advisories (from /home/runner/.cargo/advisory-db)
    Updating crates.io index
    Scanning Cargo.lock for vulnerabilities (585 crate dependencies)
Crate:     atty
Version:   0.2.14
Warning:   unsound
Title:     Potential unaligned read
Date:      2021-07-04
ID:        RUSTSEC-2021-0145
URL:       https://rustsec.org/advisories/RUSTSEC-2021-0145
Dependency tree:
atty 0.2.14
└── clap 3.2.25
    └── tauri 1.6.3
        ├── tauri 1.6.3
        ├── restart 0.1.0
        └── app-updater 0.1.0

warning: 1 allowed warning found

[1.5.2]

Dependencies

  • Upgraded to tauri-utils@1.5.4
  • Upgraded to tauri-codegen@1.4.3
Updating crates.io index
   Packaging tauri-build v1.5.2 (/home/runner/work/tauri/tauri/core/tauri-build)
   Verifying tauri-build v1.5.2 (/home/runner/work/tauri/tauri/core/tauri-build)
    Updating crates.io index
 Downloading crates ...
  Downloaded embed-resource v2.4.2
  Downloaded tauri-winres v0.1.1
  Downloaded cargo_toml v0.15.3
   Compiling proc-macro2 v1.0.81
</tr></table> 

... (truncated)

Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions