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 rust-dependencies group across 1 directory with 26 updates #1396

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 30, 2024

Bumps the rust-dependencies group with 19 updates in the / directory:

Package From To
serde 1.0.216 1.0.217
serde_json 1.0.133 1.0.134
thiserror 2.0.7 2.0.9
serde_with 3.11.0 3.12.0
proptest 1.5.0 1.6.0
glob 0.3.1 0.3.2
predicates 3.1.2 3.1.3
anyhow 1.0.94 1.0.95
cc 1.2.4 1.2.6
console 0.15.8 0.15.10
libc 0.2.168 0.2.169
miniz_oxide 0.8.0 0.8.2
object 0.36.5 0.36.7
predicates-core 1.0.8 1.0.9
predicates-tree 1.0.11 1.0.12
quote 1.0.37 1.0.38
rustversion 1.0.18 1.0.19
syn 2.0.90 2.0.93
tinyvec 1.8.0 1.8.1

Updates serde from 1.0.216 to 1.0.217

Release notes

Sourced from serde's releases.

v1.0.217

  • Support serializing externally tagged unit variant inside flattened field (#2786, thanks @​Mingun)
Commits
  • 930401b Release 1.0.217
  • cb6eaea Fix roundtrip inconsistency:
  • b6f339c Resolve repr_packed_without_abi clippy lint in tests
  • 2a5caea Merge pull request #2872 from dtolnay/ehpersonality
  • b9f93f9 Add no-std CI on stable compiler
  • eb5cd47 Drop #[lang = "eh_personality"] from no-std test
  • 8478a3b Merge pull request #2871 from dtolnay/nostdstart
  • dbb9091 Replace #[start] with extern fn main
  • See full diff in compare view

Updates serde_json from 1.0.133 to 1.0.134

Release notes

Sourced from serde_json's releases.

v1.0.134

  • Add RawValue associated constants for literal null, true, false (#1221, thanks @​bheylin)
Commits
  • b2a1415 Release 1.0.134
  • 9875785 Tweak wording of NULL/TRUE/FALSE documentation
  • 4aa05b9 Merge pull request #1222 from dtolnay/rawvalueassoc
  • f42c7c7 Move RawValue associated constants into same impl block as public functions
  • 96576ba Merge pull request #1221 from bheylin/add-const-raw-values-for-null-and-bools
  • 4db66fb Add 'static lifetime to const's
  • 9c9aa1f Add literal 'null', 'true' and 'false' consts to RawValue struct.
  • See full diff in compare view

Updates thiserror from 2.0.7 to 2.0.9

Release notes

Sourced from thiserror's releases.

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)
Commits

Updates serde_with from 3.11.0 to 3.12.0

Release notes

Sourced from serde_with's releases.

serde_with v3.12.0

Added

  • Add with_suffix! macro, which puts a suffix on every struct field by @​fgardt (#381/#797)

Changed

  • Reformat all Cargo.toml files by @​nyurik (#803)
  • Better handle internal arithmetic and improve error messages (#809/#810/#811)

Fixed

Commits
  • 5de3400 Bump version to 3.12 and update changelogs (#812)
  • 0d36647 Bump version to 3.12 and update changelogs
  • f4f784c Remove use of ops::Mul and ops::Neg since they can fail (#811)
  • 9c06ffa Generate better error messages when encountering unexpected i128/u128 values ...
  • 90d7312 Remove use of ops::Mul and ops::Neg since they can fail
  • e8d2e02 Generate better error messages when encountering unexpected i128/u128 values ...
  • 4c273b2 Remove some as casts (#809)
  • c910fa1 Fix/remove more as casts
  • fa14d98 Remove some as casts
  • ef112b9 Warn about as usage in time related code
  • Additional commits viewable in compare view

Updates proptest from 1.5.0 to 1.6.0

Commits

Updates glob from 0.3.1 to 0.3.2

Release notes

Sourced from glob's releases.

v0.3.2

What's Changed

New Contributors

Full Changelog: rust-lang/glob@0.3.1...v0.3.2

Changelog

Sourced from glob's changelog.

0.3.2 - 2024-12-28

What's Changed

New Contributors

Full Changelog: rust-lang/glob@0.3.1...0.3.2

Commits
  • 58d0748 chore: release v0.3.2
  • 55b1be0 Merge pull request #150 from tgross35/release-plz
  • 56054d2 Add release-plz for automated releases
  • b93bca1 Merge pull request #151 from tgross35/fix-ci
  • 1dff477 Add a success job to CI for branch protection
  • 9bd1af8 Update CI runners to the latest available versions
  • 8c5d22c Check only (no longer test) at the MSRV
  • 89ef8a3 Clean up the CI configuration file
  • 49ee1e9 Merge pull request #140 from rust-lang/dependabot/github_actions/actions/chec...
  • 9c9f43f Bump actions/checkout from 3 to 4
  • Additional commits viewable in compare view

Updates predicates from 3.1.2 to 3.1.3

Changelog

Sourced from predicates's changelog.

[3.1.3] - 2024-12-19

Features

  • The boxed function is now available for predicates with an Item type that is not Sized.
Commits
  • 40045bb chore: Release
  • 3480ad7 docs: Update changelog
  • 6db4ca3 Merge pull request #180 from marienz/master
  • 7cd735b feat: Implement PredicateBoxExt for ?Sized
  • 5bd6da7 chore(deps): Update Rust Stable to v1.83 (#179)
  • 3a0400e style: Make clippy happy
  • 4277197 chore: Update from _rust template
  • dabd07a Merge pull request #26 from futreall/main
  • 8100137 Update CONTRIBUTING.md
  • 006f98f chore(ci): Report deprecations in the review
  • Additional commits viewable in compare view

Updates anyhow from 1.0.94 to 1.0.95

Release notes

Sourced from anyhow's releases.

1.0.95

Commits
  • 48be1ca Release 1.0.95
  • a03d6d6 Merge pull request #402 from dtolnay/fromboxed
  • 52e4abb Add Error::from_boxed with documentation about bidirectional ?
  • ffecefc Merge pull request #401 from dtolnay/construct
  • 671f700 Add construct_ prefix to name of private construct functions
  • See full diff in compare view

Updates bit-set from 0.5.3 to 0.8.0

Changelog

Sourced from bit-set's changelog.

Version 0.7.0 (not yet released) (ZERO BREAKING CHANGES)

  • serde::Serialize, Deserialize is derived under the serde optional feature
  • impl Display is implemented
  • impl Debug has different output (we do not promise stable Debug output)
  • fn truncate is implemented
  • fn get_mut is implemented
Commits

Updates bit-vec from 0.6.3 to 0.8.0

Changelog

Sourced from bit-vec's changelog.

Version 0.8.0 (2024-07-16)

  • fn insert is implemented
  • impl Display is implemented
  • impl Debug has different output
Commits

Updates cc from 1.2.4 to 1.2.6

Release notes

Sourced from cc's releases.

cc-v1.2.6

Other

  • Don't inherit the /Oy flag for 64-bit targets (#1330)

cc-v1.2.5

Other

  • Check linking when testing if compiler flags are supported (#1322)
Changelog

Sourced from cc's changelog.

1.2.6 - 2024-12-27

Other

  • Don't inherit the /Oy flag for 64-bit targets (#1330)

1.2.5 - 2024-12-19

Other

  • Check linking when testing if compiler flags are supported (#1322)
Commits

Updates console from 0.15.8 to 0.15.10

Release notes

Sourced from console's releases.

0.15.10

What's Changed

0.15.9

What's Changed

Changelog

Sourced from console's changelog.

Changelog

Commits

Updates encode_unicode from 0.3.6 to 1.0.0

Changelog

Sourced from encode_unicode's changelog.

Version 1.0.0 (2022-08-07)

  • Replace error types InvalidUtf8Array, InvalidUtf8Slice, InvalidUtf8FirstByte and InvalidUtf8 with Utf8Error plus Utf8ErrorKind.
    Which of the new error kind variants is reported don't map 1:1 to the old enum variants: For example Utf8ErrorKind::NonUtf8Byte is returned for sequences that would previously have been reported as too high codepoint or overlong encoding.
  • Rename many other error types for consistency:
    • InvalidCodepoint -> CodepointError
    • InvalidUtf16FirstUnit -> Utf16FirstUnitError
    • InvalidUtf16Array -> Utf16ArrayError
    • InvalidUtf16Slice -> Utf16SliceError
    • 1InvalidUtf16Tuple -> Utf16TupleError
  • Change return type of CodepointError::error_range() to RangeInclusive.
  • Rename some errors variants:
    • Utf16SliceError::FirstLowSurrogate -> FirstIsTrailingSurrogate
    • Utf16SliceError::SecondNotLowSurrogate -> SecondIsNotTrailingSurrogate
    • Utf16TupleError::InvalidSecond -> SecondIsNotTrailingSurrogate
  • Expose the error type of Utf16Char::from_bmp() and rename it to NonBmpError.
  • Remove re-exports of Utf8CharIterator and Utf16CharIterator from the crate root.
    (They are still exposed via the iterator module.)
  • Remove impls of the deprecated AsciiExt trait, and make the methods available in #![no_std]-mode.
  • Make many of the previously AsciiExt methods take self by value.
  • Drop support for pre-1.0 versions of the ascii crate.
  • Remove iter_bytes() and iter_units().
  • Increase minimum Rust version to 1.56 and change the minimum Rust version policy.
  • Fix possible UB or panic in Utf8Char::from_slice_start_unchecked() when passed an empty slice.
    (relates to #12.)
  • Make many methods const fn.
  • Add const fns Utf8Char::new() and Utf16Char::new().
Commits
  • b764bc1 v1.0.0
  • c47316a Rename nightly CI run
  • b4cc796 Fix downloading for benchmarks
  • 51c9dcb Error update part 4: Rename the remaining types for consistency
  • c0593e9 Make Utf16Char::from_tuple() and ::from_tuple_unchecked() const fn
  • 801cc1e Make most non-trait methods for error types const fn
  • 4b4c1c9 Run miri
  • 5644c4e Fix error docs
  • 81fdcb0 Fix markdown in changelog for previous release
  • 7d911a4 Fix license field SPDX syntax
  • Additional commits viewable in compare view

Updates float-cmp from 0.9.0 to 0.10.0

Commits

Updates libc from 0.2.168 to 0.2.169

Release notes

Sourced from libc's releases.

0.2.169

Added

Fixed

Breaking: rust-lang/rust#132975 corrected the signedness of core::ffi::c_char on various Tier 2 and Tier 3 platforms (mostly Arm and RISC-V) to match Clang. This release contains the corresponding changes to libc, including the following specific pull requests:

Cleanup

Changelog

Sourced from libc's changelog.

0.2.169 - 2024-12-18

Added

Fixed

Breaking: rust-lang/rust#132975 corrected the signedness of core::ffi::c_char on various Tier 2 and Tier 3 platforms (mostly Arm and RISC-V) to match Clang. This release contains the corresponding changes to libc, including the following specific pull requests:

Cleanup

Commits
  • bb5944c chore: release v0.2.169
  • 8ebcf49 Merge pull request #4211 from tgross35/backport-openbsd-build
  • fab6a64 Skip c_char_def on OpenBSD
  • c86544f Merge pull request #4206 from tgross35/backport-tomato
  • 2ade12c Replace arch-conditional c_char with a reexport
  • 0567b59 Ignore ordering style for c_char
  • 3e09b7c Do not re-export c_void in target-specific code
  • 7e761a5 Fix c_char on various targets
  • 9fea17a Mirror c_char configuration from rust-lang/rust
  • 3eb9670 feat: Update c_char type
  • Additional commits viewable in compare view

Updates miniz_oxide from 0.8.0 to 0.8.2

Changelog

Sourced from miniz_oxide's changelog.

0.8.2 - 2024-12-17

Bug Fixes

  • (deflate) fix (#159) - (e3536a7) (fix for bug accidentally introduced in the previous release causing panics in some cases)- Matthew Deville

0.8.1 - 2024-12-17

Bug Fixes

  • (fuzzing) update fuzzing to work again - (b7a5908) - user
  • (deflate) use built in fill instead of custom memset function - (c0662f1) - oyvindln
  • (inflate) use smaller types in inflate struct, split up huffman table arrays to make struct smaller, make zlib level 0 if using rle, other minor tweaks - (c5f8f76) - oyvindln
  • (inflate) use function instead of lookup table for distance extra bits for tiny space/perf saving and fix clippy warnings - (9f1fc5e) - oyvindln
  • (inflate) use inputwrapper struct instead of iter to simplify input reading and change some data types for performance - (423bdf8) - oyvindln
  • (inflate) don't use lookup table on aarch64 and loong since we have bit rev instruction there, fix clippy warnings and fix conditional in tree_lookup that seemed to break perf - (083e4b3) - oyvindln
  • (inflate) fill fast lookup table with invalid code value instead of zero so we can avoid check in hot code path givin a small performance boost - (f73e6a4) - oyvindln
  • (inflate) skip pointlessly clearing unused huffman code length tree - (b3b1604) - oyvindln
  • (inflate) use built in fill instead of custom memset function - (e6ee54e) - oyvindln
  • (tests) change workflow to use rust 1.56.0 - (7258c06) - oyvindln
  • (deflate) set min window bits in inflate header when using rle - (02a8857) - oyvindln
  • (inflate) Derive Clone for InflateState to allow random-access reads (#157) - (0a33eff) - Phil Hord

Commits
  • 07bb166 update changelog and version
  • e3536a7 fix (#159)
  • d95d517 update changelog and version
  • 7f34162 fix(c_api): remove unneeded c_export cfg causing issues
  • 6fa35b5 fix(c_api): fix c export feature check
  • c0662f1 fix(deflate): use built in fill instead of custom memset function
  • e6ee54e fix(inflate): use built in fill instead of custom memset function
  • f6c3b45 fix(c_api): use correct cfg for pointer width
  • b3b1604 fix(inflate): skip pointlessly clearing unused huffman code length tree
  • b7a5908 fix(deflate): update fuzzing to work again
  • Additional commits viewable in compare view

Updates object from 0.36.5 to 0.36.7

Changelog

Sourced from object's changelog.

0.36.7

Released 2024/12/21.

Changed

  • Included build.rs in package.

0.36.6

Released 2024/12/21.

Added

  • Added Architecuture::M68k. #742 #749

  • Added Architecuture::Mips64_N32. #743

  • Added elf::SHT_RELR, read::elf::SectionHeader::relr, and write::elf::Writer::write_relative_relocation_section_header. #746

  • Added core::error::Error implementation for Rust 1.81 onwards. #747

Changed

  • Changed build::elf::Builder to support .annobin.notes, SHT_LLVM_DEPENDENT_LIBRARIES, and SHT_RELR sections. #735 #737 #746

  • Changed write::Object::add_subsection to omit the subsection name suffix if the subsection name is empty. #748


Commits

Updates predicates-core from 1.0.8 to 1.0.9

Changelog

Sourced from predicates-core's changelog.

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[Unreleased] - ReleaseDate

[3.1.3] - 2024-12-19

Features

  • The boxed function is now available for predicates with an Item type that is not Sized.

[3.1.2] - 2024-07-25

[3.1.1] - 2024-07-25

Compatibility

  • Update MSRV to 1.74

[3.1.0] - 2024-01-15

Compatibility

  • Update MSRV to 1.70.0

Internals

  • Remove itertools

[3.0.4] - 2023-09-18

Compatibility

  • Update MSRV to 1.69.0

Internal

  • Update itertools to 0.11

[3.0.3] - 2023-04-13

Internal

  • Update anstyle to 1.0

... (truncated)

Commits

Updates predicates-tree from 1.0.11 to 1.0.12

Commits

Updates quote from 1.0.37 to 1.0.38

Release notes

Sourced from quote's releases.

1.0.38

  • Support interpolating arrays inside of arrays using a repetition (#286)
Commits
  • 0245506 Release 1.0.38
  • d978c51 Merge pull request #286 from dtolnay/array
  • 09d1e42 Implement repetition for arrays
  • 5bba89f Add repetition test with array of array
  • aafba72 Prevent upload-artifact step from causing CI failure
  • c889896 Update not-quotable ui test for ToTokens impl changes
  • 87c247f Resolve some needless_lifetimes clippy lints
  • 31d7a01 Ignore needless_lifetimes clippy lint
  • 6cff24b Upload CI Cargo.lock for reproducing failures
  • See full diff in compare view

Updates rustversion from 1.0.18 to 1.0.19

Release notes

Sourced from rustversion's releases.

1.0.19

  • Documentation improvements
Commits

Updates serde_derive from 1.0.216 to 1.0.217

Release notes

Sourced from serde_derive's releases.

v1.0.217

  • Support serializing externally tagged unit variant inside flattened field (#2786, thanks @​Mingun)
Commits
  • 930401b Release 1.0.217
  • cb6eaea Fix roundtrip inconsistency:
  • b6f339c Resolve repr_packed_without_abi clippy lint in tests
  • 2a5caea Merge pull request #2872 from dtolnay/ehpersonality
  • b9f93f9 Add no-std CI on stable compiler
  • eb5cd47 Drop #[lang = "eh_personality"] from no-std test
  • 8478a3b Merge pull request #2871 from dtolnay/nostdstart
  • dbb9091 Replace #[start] with extern fn main
  • See full diff in compare view

Updates serde_with_macros from 3.11.0 to 3.12.0

Release notes

Sourced from serde_with_macros's releases.

serde_with v3.12.0

Added

  • Add with_suffix! macro, which puts a suffix on every struct field by @​fgardt (#381/#797)

Changed

  • Reformat all Cargo.toml files by @​nyurik (#803)
  • Better handle internal arithmetic and improve error messages (#809/#810/#811)

Fixed

Commits

Bumps the rust-dependencies group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [serde](https://github.com/serde-rs/serde) | `1.0.216` | `1.0.217` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.133` | `1.0.134` |
| [thiserror](https://github.com/dtolnay/thiserror) | `2.0.7` | `2.0.9` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.11.0` | `3.12.0` |
| [proptest](https://github.com/proptest-rs/proptest) | `1.5.0` | `1.6.0` |
| [glob](https://github.com/rust-lang/glob) | `0.3.1` | `0.3.2` |
| [predicates](https://github.com/assert-rs/predicates-rs) | `3.1.2` | `3.1.3` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.94` | `1.0.95` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.4` | `1.2.6` |
| [console](https://github.com/console-rs/console) | `0.15.8` | `0.15.10` |
| [libc](https://github.com/rust-lang/libc) | `0.2.168` | `0.2.169` |
| [miniz_oxide](https://github.com/Frommi/miniz_oxide) | `0.8.0` | `0.8.2` |
| [object](https://github.com/gimli-rs/object) | `0.36.5` | `0.36.7` |
| [predicates-core](https://github.com/assert-rs/predicates-rs) | `1.0.8` | `1.0.9` |
| [predicates-tree](https://github.com/assert-rs/predicates-rs) | `1.0.11` | `1.0.12` |
| [quote](https://github.com/dtolnay/quote) | `1.0.37` | `1.0.38` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.18` | `1.0.19` |
| [syn](https://github.com/dtolnay/syn) | `2.0.90` | `2.0.93` |
| [tinyvec](https://github.com/Lokathor/tinyvec) | `1.8.0` | `1.8.1` |



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

Updates `serde_json` from 1.0.133 to 1.0.134
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.133...v1.0.134)

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

Updates `serde_with` from 3.11.0 to 3.12.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.11.0...v3.12.0)

Updates `proptest` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/proptest-rs/proptest/commits)

Updates `glob` from 0.3.1 to 0.3.2
- [Release notes](https://github.com/rust-lang/glob/releases)
- [Changelog](https://github.com/rust-lang/glob/blob/master/CHANGELOG.md)
- [Commits](rust-lang/glob@0.3.1...v0.3.2)

Updates `predicates` from 3.1.2 to 3.1.3
- [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md)
- [Commits](assert-rs/predicates-rs@v3.1.2...v3.1.3)

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

Updates `bit-set` from 0.5.3 to 0.8.0
- [Release notes](https://github.com/contain-rs/bit-set/releases)
- [Changelog](https://github.com/contain-rs/bit-set/blob/master/RELEASES.md)
- [Commits](https://github.com/contain-rs/bit-set/commits)

Updates `bit-vec` from 0.6.3 to 0.8.0
- [Changelog](https://github.com/contain-rs/bit-vec/blob/master/RELEASES.md)
- [Commits](https://github.com/contain-rs/bit-vec/commits)

Updates `cc` from 1.2.4 to 1.2.6
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.4...cc-v1.2.6)

Updates `console` from 0.15.8 to 0.15.10
- [Release notes](https://github.com/console-rs/console/releases)
- [Changelog](https://github.com/console-rs/console/blob/main/CHANGELOG.md)
- [Commits](console-rs/console@0.15.8...0.15.10)

Updates `encode_unicode` from 0.3.6 to 1.0.0
- [Changelog](https://github.com/tormol/encode_unicode/blob/master/RELEASES.md)
- [Commits](tormol/encode_unicode@v0.3.6...v1.0.0)

Updates `float-cmp` from 0.9.0 to 0.10.0
- [Commits](https://github.com/mikedilger/float-cmp/commits)

Updates `libc` from 0.2.168 to 0.2.169
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.169/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.168...0.2.169)

Updates `miniz_oxide` from 0.8.0 to 0.8.2
- [Changelog](https://github.com/Frommi/miniz_oxide/blob/master/CHANGELOG.md)
- [Commits](Frommi/miniz_oxide@0.8.0...0.8.2)

Updates `object` from 0.36.5 to 0.36.7
- [Changelog](https://github.com/gimli-rs/object/blob/master/CHANGELOG.md)
- [Commits](gimli-rs/object@0.36.5...0.36.7)

Updates `predicates-core` from 1.0.8 to 1.0.9
- [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md)
- [Commits](assert-rs/predicates-rs@predicates-core-v1.0.8...predicates-core-v1.0.9)

Updates `predicates-tree` from 1.0.11 to 1.0.12
- [Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md)
- [Commits](assert-rs/predicates-rs@predicates-tree-v1.0.11...predicates-tree-v1.0.12)

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

Updates `rustversion` from 1.0.18 to 1.0.19
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.18...1.0.19)

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

Updates `serde_with_macros` from 3.11.0 to 3.12.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.11.0...v3.12.0)

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

Updates `termtree` from 0.4.1 to 0.5.1
- [Changelog](https://github.com/rust-cli/termtree/blob/main/CHANGELOG.md)
- [Commits](rust-cli/termtree@v0.4.1...v0.5.1)

Updates `tinyvec` from 1.8.0 to 1.8.1
- [Changelog](https://github.com/Lokathor/tinyvec/blob/main/CHANGELOG.md)
- [Commits](Lokathor/tinyvec@v1.8.0...v1.8.1)

---
updated-dependencies:
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde_with
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: proptest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: glob
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: predicates
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: anyhow
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: bit-set
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: bit-vec
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: console
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: encode_unicode
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: rust-dependencies
- dependency-name: float-cmp
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: miniz_oxide
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: object
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: predicates-core
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: predicates-tree
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: quote
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: rustversion
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde_derive
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: serde_with_macros
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: syn
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
- dependency-name: termtree
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: tinyvec
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: rust-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 30, 2024
@john-h-kastner-aws john-h-kastner-aws merged commit 2e8cbf1 into main Dec 30, 2024
19 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/rust-dependencies-d6c8a4325e branch December 30, 2024 14:20
@john-h-kastner-aws
Copy link
Contributor

@dependabot show ignore conditions

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.

2 participants