Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Bump the production-dependencies group with 16 updates #98

Closed

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the production-dependencies group with 16 updates:

Package From To
base64 0.21.7 0.22.0
logos 0.13.0 0.14.0
miette 7.0.0 7.2.0
insta 1.34.0 1.38.0
serde_json 1.0.113 1.0.115
serde_yaml 0.9.31 0.9.34+deprecated
proc-macro2 1.0.78 1.0.79
syn 2.0.48 2.0.57
trybuild 1.0.89 1.0.91
serde 1.0.196 1.0.197
criterion 0.4.0 0.5.1
rayon 1.8.1 1.10.0
env_logger 0.10.2 0.11.2
ureq 2.9.4 2.9.6
anyhow 1.0.79 1.0.81
tempfile 3.10.0 3.10.1

Updates base64 from 0.21.7 to 0.22.0

Changelog

Sourced from base64's changelog.

0.22.0

  • DecodeSliceError::OutputSliceTooSmall is now conservative rather than precise. That is, the error will only occur if the decoded output cannot fit, meaning that Engine::decode_slice can now be used with exactly-sized output slices. As part of this, Engine::internal_decode now returns DecodeSliceError instead of DecodeError, but that is not expected to affect any external callers.
  • DecodeError::InvalidLength now refers specifically to the number of valid symbols being invalid (i.e. len % 4 == 1), rather than just the number of input bytes. This avoids confusing scenarios when based on interpretation you could make a case for either InvalidLength or InvalidByte being appropriate.
  • Decoding is somewhat faster (5-10%)
Commits
  • 5d70ba7 Merge pull request #269 from marshallpierce/mp/decode-precisely
  • efb6c00 Release notes
  • 2b91084 Add some tests to boost coverage
  • 9e9c7ab Engine::internal_decode now returns DecodeSliceError
  • a8a60f4 Decode main loop improvements
  • a25be06 Simplify leftover output writes
  • 9979cc3 Keep morsels as separate bytes
  • 37670c5 Bump dev toolchain version (#268)
  • See full diff in compare view

Updates logos from 0.13.0 to 0.14.0

Release notes

Sourced from logos's releases.

0.14 - Let's make Logos active again!

After months without any new release, 0.14 is finally out!

Short summary

  • Logos now provides a very useful handbook;
  • Bug fixes and continuous-integration tools via GitHub workflows;
  • ⚠️ BREAKING priority of classes was changed from 1 to 2, see #320, as a result of bump regex-syntax. This bump actually improves so performances, but only slightly (see below). The documentation about token disambiguation reflects that changes too.

Performance changes from #320:

group                                         before                                 changes
-----                                         ------                                 -------
count_ok/identifiers                          1.04    869.2±6.09ns   854.7 MB/sec    1.00   832.9±14.13ns   891.9 MB/sec
count_ok/keywords_operators_and_punctators    1.04      2.6±0.02µs   784.4 MB/sec    1.00      2.5±0.08µs   811.9 MB/sec
count_ok/strings                              1.03    597.6±5.73ns  1389.9 MB/sec    1.00    582.6±6.94ns  1425.8 MB/sec
iterate/identifiers                           1.05   883.7±23.22ns   840.7 MB/sec    1.00   838.2±12.23ns   886.3 MB/sec
iterate/keywords_operators_and_punctators     1.01      2.6±0.03µs   768.0 MB/sec    1.00      2.6±0.03µs   778.2 MB/sec
iterate/strings                               1.02    595.7±7.48ns  1394.5 MB/sec    1.00    583.6±4.39ns  1423.3 MB/sec

The detailed list of patches can be found below, many thanks to all contributors!

Longer story and help needed

As mentioned in 0.13, the author of Logos, @​maciejhirsz, is reducing his time on GitHub. A few months ago, I was granted collaborator rights, so I can help to maintain this project by reviewing and merging PRs.

As a result, please tag me, @​jeertmans, whenever you need help or else (if I did not give any sign of life for a few days).

From now on, I will be able to publish new versions to crates.io, which I hope to do more frequently than in the past months (or years) of this project.

However, I do not master this project at all, and I welcome any help from the community to make this project grow! I tried to setup a nice working environment, with many tests and guides, to facilitate first time contributors' life!

What's Changed

... (truncated)

Commits
  • 171422c Merge pull request #371 from maciejhirsz/logos
  • 0780d6b Merge pull request #370 from maciejhirsz/logos
  • 560908d fix: typo
  • 5f02535 chore(lib): back from logos2 to logos
  • 9ec6a64 Merge pull request #369 from maciejhirsz/release-0.14
  • 3715ca1 chore(version): bump logos version to 0.14.0
  • 1e6dfb2 Merge pull request #368 from maciejhirsz/bump-pretty-assertions
  • 977ca3b chore(deps): bump pretty-assertions to 1.4.0
  • 1c25140 Merge pull request #363 from maciejhirsz/dependabot/github_actions/codecov/co...
  • a0653b7 Merge pull request #320 from jeertmans/bump-regex-syntax
  • Additional commits viewable in compare view

Updates miette from 7.0.0 to 7.2.0

Release notes

Sourced from miette's releases.

v7.1.0

Features

  • derive: enable more boxed types to be #[diagnostic_source] (#338) (c2f06f6c)
  • source: derive common traits for NamedSource, SourceSpan, and SourceOffset (#340) (6f09250c)
  • collection: add support for collection of labels (#341) (03060245)

Bug Fixes

  • tests: revert test-breaking changes of e5c7ae4 (#339) (6e829f8c)
Changelog

Sourced from miette's changelog.

7.2.0 (2024-03-07)

Features

  • wasm: add feature "fancy-no-syscall" for wasm targets (#349) (328bf379)

Bug Fixes

  • label-collections: Label collection fixes and cleanup (#343) (75fea093)
  • invalid span: skip the snippet when read_span fails (#347) (7d9dfc6e)
  • redundant-import: fix a warning and CI failure in nightly (#348) (6ea86a22)

7.1.0 (2024-02-16)

Features

  • derive: enable more boxed types to be #[diagnostic_source] (#338) (c2f06f6c)
  • source: derive common traits for NamedSource, SourceSpan, and SourceOffset (#340) (6f09250c)
  • collection: add support for collection of labels (#341) (03060245)

Bug Fixes

  • tests: revert test-breaking changes of e5c7ae4 (#339) (6e829f8c)

Commits
  • ca646f3 chore: Release
  • ff7baae docs: update changelog
  • 24a7bf4 ci(doc consistency): check that lib.rs and README.md are consistent (#353)
  • 22b29ee docs: use cargo readme to update (#351)
  • 62cfd22 docs: add severity example (#350)
  • 328bf37 feat(wasm): add feature "fancy-no-syscall" for wasm targets (#349)
  • 6ea86a2 fix(redundant-import): fix a warning and CI failure in nightly (#348)
  • 7d9dfc6 fix(invalid span): skip the snippet when read_span fails (#347)
  • 75fea09 fix(label-collections): Label collection fixes and cleanup (#343)
  • a18a644 chore: Release
  • Additional commits viewable in compare view

Updates insta from 1.34.0 to 1.38.0

Release notes

Sourced from insta's releases.

1.38.0

Release Notes

  • Filters is now constructible from IntoIterator. #400

  • Change std macro calls to be fully qualified. This fixes issues where the prelude was not used or the macros were overridden. #469

Install cargo-insta 1.38.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.38.0/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/mitsuhiko/insta/releases/download/1.38.0/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.38.0

File Platform Checksum
cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum
cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum
cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum
cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum
Changelog

Sourced from insta's changelog.

1.38.0

  • Filters is now constructible from IntoIterator. #400

  • Change std macro calls to be fully qualified. This fixes issues where the prelude was not used or the macros were overridden. #469

1.37.0

  • All macros for file snapshots should now handle trailing commas (but not yet inline snapshots)

  • Vendored old yaml-rust dependency to avoid rustsec warnings. #465

1.36.1

  • Fix an ownership issue introduced in 1.36 with snapshot assertions. #453

1.36.0

  • Deprecate INSTA_FORCE_UPDATE_SNAPSHOTS env-var for INSTA_FORCE_UPDATE. The latter was documented, the former was implemented. #449

  • Add require_full_match option. #448

  • Deprecate assert_display_snapshot!. #385

1.35.1

  • Fixed a bug with diffs showing bogus newlines.

1.35.0

  • Fixed a crash when a file named .config was in the root.
  • Added new alternative match .. { ... } syntax to redactions for better rustfmt support. (#428)
  • The --package parameter can be supplied multiple times now. (#427)
  • Leading newlines in snapshots are now ignored to resolve issues with inline snapshots that were never able to match. (#444)
  • cargo insta test now accepts the --test parameter multiple times. (#437)
Commits

Updates serde_json from 1.0.113 to 1.0.115

Release notes

Sourced from serde_json's releases.

v1.0.115

  • Documentation improvements

v1.0.114

  • Fix unused_imports warnings when compiled by rustc 1.78
Commits
  • b1ebf38 Release 1.0.115
  • c3dc153 Merge pull request #1119 from titaniumtraveler/pr
  • 218770b Explicitly install a Rust toolchain for cargo-outdated job
  • 840da8e Fix missing backticks in doc comments
  • 3a3f61b Temporarily disable miri on doctests
  • 4a0be88 Format regression tests with rustfmt
  • d2dbbf7 Ignore dead code lint in tests
  • 8e7b37b Merge pull request #1118 from serde-rs/transparent
  • a25f6c6 Remove conditional on repr(transparent)
  • fedf834 Ignore non_local_definitions false positive in test
  • Additional commits viewable in compare view

Updates serde_yaml from 0.9.31 to 0.9.34+deprecated

Release notes

Sourced from serde_yaml's releases.

0.9.34

As of this release, I am not planning to publish further versions of serde_yaml as none of my projects have been using YAML for a long time, so I have archived the GitHub repo and marked the crate deprecated in the version number. An official replacement isn't designated for those who still need to work with YAML, but https://crates.io/search?q=yaml&sort=relevance and https://crates.io/keywords/yaml has a number of reasonable-looking options available.

0.9.33

0.9.32

  • Fix unused_imports warnings when compiled by rustc 1.78
Commits
  • 2009506 Release 0.9.34
  • 3ba8462 Add unmaintained note
  • 77236b0 Ignore dead code lint in tests
  • f4c9ed9 Release 0.9.33
  • b4edaee Pull in yaml_parser_fetch_more_tokens fix from libyaml
  • 8a5542c Resolve non_local_definitions warning in test
  • ea57d8c Release 0.9.32
  • a52b7ac Resolve prelude redundant import warnings
  • 9e0b8d3 Replace curly quotes with ascii straight quotes
  • See full diff in compare view

Updates proc-macro2 from 1.0.78 to 1.0.79

Release notes

Sourced from proc-macro2's releases.

1.0.79

  • Clean up dead code
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
  • See full diff in compare view

Updates syn from 2.0.48 to 2.0.57

Release notes

Sourced from syn's releases.

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)
Commits
  • 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)
  • 4913ab2 chore: bump msrv to 1.60
  • 694f604 feat: use optional dependency feature syntax ?
  • 6c7c709 refactor: use dep: prefix for quote dependency
  • c7f734d Explicitly install a Rust toolchain for cargo-outdated job
  • dcd74f5 Merge pull request #1605 from dtolnay/workspacewrapper
  • 3748333 Apply RUSTC_WORKSPACE_WRAPPER
  • Additional commits viewable in compare view

Updates trybuild from 1.0.89 to 1.0.91

Release notes

Sourced from trybuild's releases.

1.0.91

1.0.90

  • Support dotted key syntax in workspace Cargo.toml when using edition={workspace=true} (#257)
Commits
  • bad6950 Release 1.0.91
  • 7a49c7b Merge pull request #262 from csnover/fix-msrv
  • 4fc90bf Update MSRV to reflect changes to dependencies
  • 3db4c4c Explicitly install a Rust toolchain for cargo-outdated job
  • 17b3666 Release 1.0.90
  • 93b44ef Merge pull request #239 from dtolnay/toml
  • 835f9da Merge pull request #259 from dtolnay/pubcrate
  • 8562fca Reduce visibility of items that are not publicly accessible
  • acb76ef Drop basic-toml in favor of more widely used toml crate
  • See full diff in compare view

Updates serde from 1.0.196 to 1.0.197

Release notes

Sourced from serde's releases.

v1.0.197

  • Fix unused_imports warnings when compiled by rustc 1.78
  • Optimize code size of some Display impls (#2697, thanks @​nyurik)
Commits
  • 5fa711d Release 1.0.197
  • f5d8ae4 Resolve prelude redundant import warnings
  • 1d54973 Merge pull request #2697 from nyurik/format-str
  • b8fafef A few minor write_str optimizations and inlining
  • c42ebb8 Update ui test suite to nightly-2024-02-12
  • 9e68062 Ignore incompatible_msrv clippy lint for conditionally compiled code
  • 846f865 Ignore dead_code warnings in test
  • See full diff in compare view

Updates criterion from 0.4.0 to 0.5.1

Changelog

Sourced from criterion's changelog.

[0.5.1] - 2023-05-26

Fixed

  • Quick mode (--quick) no longer crashes with measured times over 5 seconds when --noplot is not active

[0.5.0] - 2023-05-23

Changed

  • Replaced lazy_static dependency with once_cell
  • Improved documentation of the html_reports feature
  • Replaced atty dependency with is-terminal
  • MSRV bumped to 1.64
  • Upgraded clap dependency to v4
  • Upgraded tempfile dependency to v3.5.0

Fixed

  • Quick mode (--quick) no longer outputs 1ms for measured times over 5 seconds
  • Documentation updates
Commits

Updates rayon from 1.8.1 to 1.10.0

Changelog

Sourced from rayon's changelog.

Release rayon 1.10.0 (2024-03-23)

  • The new methods ParallelSlice::par_chunk_by and ParallelSliceMut::par_chunk_by_mut work like the slice methods chunk_by and chunk_by_mut added in Rust 1.77.

Release rayon 1.9.0 (2024-02-27)

  • The new methods IndexedParallelIterator::by_exponential_blocks and by_uniform_blocks allow processing items in smaller groups at a time.
  • The new iter::walk_tree, walk_tree_prefix, and walk_tree_postfix functions enable custom parallel iteration over tree-like structures.
  • The new method ParallelIterator::collect_vec_list returns items as a linked list of vectors, which is an efficient mode of parallel collection used by many of the internal implementations of collect.
  • The new methods ParallelSliceMut::par_split_inclusive_mut, ParallelSlice::par_split_inclusive, and ParallelString::par_split_inclusive all work like a normal split but keeping the separator as part of the left slice.
  • The new ParallelString::par_split_ascii_whitespace splits only on ASCII whitespace, which is faster than including Unicode multi-byte whitespace.
  • OsString now implements FromParallelIterator<_> and ParallelExtend<_> for a few item types similar to the standard FromIterator and Extend.
  • The internal Pattern trait for string methods is now implemented for [char; N] and &[char; N], matching any of the given characters.
Commits

Updates env_logger from 0.10.2 to 0.11.2

Release notes

Sourced from env_logger's releases.

v0.11.2

[0.11.2] - 2024-02-13

v0.11.1

What's Changed

New Contributors

Full Changelog: rust-cli/env_logger@v0.11.0...v0.11.1

v0.11.0

What's Changed

Full Changelog: rust-cli/env_logger@v0.10.2...v0.11.0

Changelog

Sourced from env_logger's changelog.

[0.11.2] - 2024-02-13

[0.11.1] - 2024-01-27

Fixes

  • Allow styling with Target::Pipe

[0.11.0] - 2024-01-19

Migration Guide

env_logger::fmt::Style: The bespoke styling API, behind color, was removed, in favor of accepting any ANSI styled string and adapting it to the target stream's capabilities.

Possible styling libraries include:

  • anstyle is a minimal, runtime string styling API and is re-exported as env_logger::fmt::style
  • owo-colors is a feature rich runtime string styling API
  • color-print for feature-rich compile-time styling API

custom_format.rs uses anstyle via Formatter::default_level_style

Breaking Change

  • Removed bespoke styling API
    • env_logger::fmt::Formatter::style
    • env_logger::fmt::Formatter::default_styled_level
    • env_logger::fmt::Style
    • env_logger::fmt::Color
    • env_logger::fmt::StyledValue
  • Removed env_logger::filter in favor of env_filter

Compatibility

MSRV changed to 1.71

Features

  • Automatically adapt ANSI escape codes in logged messages to the current terminal's capabilities
  • Add support for NO_COLOR and CLICOLOR_FORCE, see https://bixense.com/clicolors/

Fixes

  • Print colors when is_test(true)
Commits
  • b0e3ea9 chore: Release
  • 522ce17 Merge pull request #310 from epage/docs
  • c67579c docs(fmt): Talk about new styling API
  • 62713d1 refactor(docs): Use intra-doc links
  • 1b0f4dd docs(fmt): Point people to anstyle adapters
  • 8bf7499 refactor(fmt): Use simplified anstyle formatting
  • 5e0566e chore: Update anstyle
  • 6562f9a docs(changelog): Add migration guide
  • 8c94cd5 Merge pull request #308 from epage/rustbuild
  • 2f636ed chore: Remove potentially unused rustbuild cfgs
  • Additional commits viewable in compare view

Updates ureq from 2.9.4 to 2.9.6

Changelog

Sourced from ureq's changelog.

2.9.6

Fixed

  • hootbin is optional dep. Tests must be run with feature testdeps (#729)
  • Exclude script files from cargo package (#728)

2.9.5

Fixed

  • Update deps (cookie 0.18, cookie_store 0.21, unpin url). (#722)
Commits

Updates anyhow from 1.0.79 to 1.0.81

Release notes

Sourced from anyhow's releases.

1.0.81

  • Make backtrace support available when using -Dwarnings (#354)

1.0.80

  • Fix unused_imports warnings when compiled by rustc 1.78
Commits
  • 4aad4ed Release 1.0.81
  • 8be9091 Merge pull request #354 from dtolnay/deadcode
  • a2eb7dd Make compatible with -Dwarnings
  • 5443719 Release 1.0.80
  • dfc7bc0 Work around prelude redundant import warnings
  • 6e4f86b Import from alloc not std, where possible
  • f885a13 Ignore incompatible_msrv clippy false positives in test
  • fefbcbc Ignore incompatible_msrv clippy lint
  • 78f2d81 Update ui test suite to nightly-2024-02-08
  • edd88d3 Update ui test suite to nightly-2024-01-31
  • See full diff in compare view

Updates tempfile from 3.10.0 to 3.10.1

Changelog

Sourced from tempfile's changelog.

3.10.1

  • Handle potential integer overflows in 32-bit systems when seeking/truncating "spooled" temporary files past 4GiB (2³²).
  • Handle a theoretical 32-bit overflow when generating a temporary file name larger than 4GiB. Now it'll panic (on allocation failure) rather than silently succeeding due to wraparound.

Thanks to @​stoeckmann for finding and fixing both of these issues.

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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production-dependencies group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.21.7` | `0.22.0` |
| [logos](https://github.com/maciejhirsz/logos) | `0.13.0` | `0.14.0` |
| [miette](https://github.com/zkat/miette) | `7.0.0` | `7.2.0` |
| [insta](https://github.com/mitsuhiko/insta) | `1.34.0` | `1.38.0` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.113` | `1.0.115` |
| [serde_yaml](https://github.com/dtolnay/serde-yaml) | `0.9.31` | `0.9.34+deprecated` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.78` | `1.0.79` |
| [syn](https://github.com/dtolnay/syn) | `2.0.48` | `2.0.57` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.89` | `1.0.91` |
| [serde](https://github.com/serde-rs/serde) | `1.0.196` | `1.0.197` |
| [criterion](https://github.com/bheisler/criterion.rs) | `0.4.0` | `0.5.1` |
| [rayon](https://github.com/rayon-rs/rayon) | `1.8.1` | `1.10.0` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.10.2` | `0.11.2` |
| [ureq](https://github.com/algesten/ureq) | `2.9.4` | `2.9.6` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.79` | `1.0.81` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.10.0` | `3.10.1` |


Updates `base64` from 0.21.7 to 0.22.0
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.21.7...v0.22.0)

Updates `logos` from 0.13.0 to 0.14.0
- [Release notes](https://github.com/maciejhirsz/logos/releases)
- [Changelog](https://github.com/maciejhirsz/logos/blob/master/release.toml)
- [Commits](maciejhirsz/logos@v0.13...v0.14)

Updates `miette` from 7.0.0 to 7.2.0
- [Release notes](https://github.com/zkat/miette/releases)
- [Changelog](https://github.com/zkat/miette/blob/main/CHANGELOG.md)
- [Commits](zkat/miette@miette-derive-v7.0.0...miette-derive-v7.2.0)

Updates `insta` from 1.34.0 to 1.38.0
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.34.0...1.38.0)

Updates `serde_json` from 1.0.113 to 1.0.115
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.113...v1.0.115)

Updates `serde_yaml` from 0.9.31 to 0.9.34+deprecated
- [Release notes](https://github.com/dtolnay/serde-yaml/releases)
- [Commits](dtolnay/serde-yaml@0.9.31...0.9.34)

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

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

Updates `trybuild` from 1.0.89 to 1.0.91
- [Release notes](https://github.com/dtolnay/trybuild/releases)
- [Commits](dtolnay/trybuild@1.0.89...1.0.91)

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

Updates `criterion` from 0.4.0 to 0.5.1
- [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md)
- [Commits](bheisler/criterion.rs@0.4.0...0.5.1)

Updates `rayon` from 1.8.1 to 1.10.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.8.1...rayon-core-v1.10.0)

Updates `env_logger` from 0.10.2 to 0.11.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.2...v0.11.2)

Updates `ureq` from 2.9.4 to 2.9.6
- [Changelog](https://github.com/algesten/ureq/blob/main/CHANGELOG.md)
- [Commits](algesten/ureq@2.9.4...2.9.6)

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

Updates `tempfile` from 3.10.0 to 3.10.1
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.10.0...v3.10.1)

---
updated-dependencies:
- dependency-name: base64
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: logos
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: miette
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: insta
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: serde_yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: trybuild
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: criterion
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: rayon
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: ureq
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 1, 2024
Copy link

codecov bot commented Apr 1, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 76.32%. Comparing base (d554c53) to head (7ad665c).

Additional details and impacted files
@@            Coverage Diff             @@
##             main      #98      +/-   ##
==========================================
+ Coverage   76.30%   76.32%   +0.01%     
==========================================
  Files          31       31              
  Lines        5452     5452              
==========================================
+ Hits         4160     4161       +1     
+ Misses       1292     1291       -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 3, 2024

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

@dependabot dependabot bot closed this Apr 3, 2024
@dependabot dependabot bot deleted the dependabot/cargo/production-dependencies-b81fab95c5 branch April 3, 2024 21:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants