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 dependencies group with 10 updates #126

Merged
merged 1 commit into from
Dec 23, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dependencies group with 10 updates:

Package From To
anyhow 1.0.94 1.0.95
env_logger 0.11.5 0.11.6
inventory 0.3.15 0.3.16
syn 2.0.90 2.0.91
cc 1.2.4 1.2.5
console 0.15.8 0.15.10
encode_unicode 0.3.6 1.0.0
env_filter 0.1.2 0.1.3
libc 0.2.168 0.2.169
windows-sys 0.52.0 0.59.0

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 env_logger from 0.11.5 to 0.11.6

Release notes

Sourced from env_logger's releases.

v0.11.6

[0.11.6] - 2024-12-20

Features

  • Opt-in file and line rendering
Changelog

Sourced from env_logger's changelog.

[0.11.6] - 2024-12-20

Features

  • Opt-in file and line rendering
Commits
  • dc1a01a chore: Release
  • 65f81b3 docs: Update changelog
  • 7742599 Merge pull request #345 from EriKWDev/main
  • 59229bc fix: Test result of everything enabled has changed
  • b0d4760 spelling + field names
  • 1bad1f5 feature: ability to display source file path and line number with default for...
  • cc97bf7 chore(deps): Update Rust Stable to v1.83 (#343)
  • 240cd21 style: Make clippy happy
  • da7ff82 chore: Update from _rust template
  • ab1d854 chore(deps): Update Rust crate snapbox to v0.6.20 (#342)
  • Additional commits viewable in compare view

Updates inventory from 0.3.15 to 0.3.16

Release notes

Sourced from inventory's releases.

0.3.16

Commits
  • 7d32b0e Release 0.3.16
  • 59030c7 Merge pull request #75 from dtolnay/wasm
  • d539426 Make Wasm link section conditional on compiler version
  • 9e051ed Wrap macos cfg attribute
  • e42b712 Merge pull request #74 from georgestagg/emscripten
  • f4d1b92 Use .init_array section on wasi and emscripten
  • 58e7aaf Prevent upload-artifact step from causing CI failure
  • bb269d9 Update ui test suite to nightly-2024-10-30
  • ea79a14 Upload CI Cargo.lock for reproducing failures
  • f15e000 Update test suite to nightly-2024-07-01
  • Additional commits viewable in compare view

Updates syn from 2.0.90 to 2.0.91

Release notes

Sourced from syn's releases.

2.0.91

  • Support parsing Vec<Arm> using parse_quote! (#1796, #1797)
Commits
  • 53de985 Release 2.0.91
  • 18fc8d1 Merge pull request #1797 from dtolnay/parsequotespecial
  • 762ba97 Document more parse_quote special cases
  • 1c739cb Merge pull request #1796 from dtolnay/vecarm
  • d2bc3a3 Allow Vec<Arm> in parse_quote
  • 384516b Update test suite to nightly-2024-12-19
  • 6adf9e5 Update test suite to nightly-2024-12-17
  • 1810278 Merge pull request #1794 from dtolnay/up
  • 5d33783 Update open syntax issues
  • 4398b60 Categorize newly failing rust repo source files
  • Additional commits viewable in compare view

Updates cc from 1.2.4 to 1.2.5

Release notes

Sourced from cc's releases.

cc-v1.2.5

Other

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

Sourced from cc's changelog.

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 env_filter from 0.1.2 to 0.1.3

Commits
  • dc1a01a chore: Release
  • 65f81b3 docs: Update changelog
  • 7742599 Merge pull request #345 from EriKWDev/main
  • 59229bc fix: Test result of everything enabled has changed
  • b0d4760 spelling + field names
  • 1bad1f5 feature: ability to display source file path and line number with default for...
  • cc97bf7 chore(deps): Update Rust Stable to v1.83 (#343)
  • 240cd21 style: Make clippy happy
  • da7ff82 chore: Update from _rust template
  • ab1d854 chore(deps): Update Rust crate snapbox to v0.6.20 (#342)
  • Additional commits viewable in compare view

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 windows-sys from 0.52.0 to 0.59.0

Release notes

Sourced from windows-sys's releases.

0.59.0

This release includes an update to the windows-sys crate only. The windows-sys crate is updated very infrequently and only when there is an explicit need to do so. The 0.59.0 release includes a rollup of API fixes, updates, and additions since the 0.52.0 release nine months ago. Notably:

Full Changelog: microsoft/windows-rs@0.52.0...0.59.0

0.58.0

This release includes updates to metadata for new or fixed API definitions (#3111, #3136), various improvements and fixes to code generation, compliance with new Rust warnings, additional COM authoring support improvements (#3065), limited non-Windows support (#3135), and more.

It includes major updates to the following crates, mainly due to breaking changes in metadata for API definitions.

  • riddle 0.58.0
  • windows 0.58.0
  • windows-bindgen 0.58.0
  • windows-core 0.58.0
  • windows-implement 0.58.0
  • windows-interface 0.58.0
  • windows-metadata 0.58.0

It also includes major updates to the following utility crates.

  • windows-result 0.2.0
  • windows-registry 0.2.0

The windows-result crate now provides limited non-Windows support, and the windows-registry crate offers new lossless queries for binary and wide string values.

And it includes minor updates to the windows-targets crates, with the addition of several new APIs.

  • windows-targets 0.52.6

This release also includes the first published version of the windows-strings crate, moving the string types from the windows-core crate into a dedicated crate as a smaller dependency. It also offers an efficient HSTRING builder (#3133).

To clarify, the only crates that continue to support limited non-Windows builds are:

  • windows-bindgen and windows-metadata for code generation on non-Windows platforms.
  • windows-core and windows-result for COM support on non-Windows platforms.

What's Changed

... (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 <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 dependencies group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.94` | `1.0.95` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.11.5` | `0.11.6` |
| [inventory](https://github.com/dtolnay/inventory) | `0.3.15` | `0.3.16` |
| [syn](https://github.com/dtolnay/syn) | `2.0.90` | `2.0.91` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.4` | `1.2.5` |
| [console](https://github.com/console-rs/console) | `0.15.8` | `0.15.10` |
| [encode_unicode](https://github.com/tormol/encode_unicode) | `0.3.6` | `1.0.0` |
| [env_filter](https://github.com/rust-cli/env_logger) | `0.1.2` | `0.1.3` |
| [libc](https://github.com/rust-lang/libc) | `0.2.168` | `0.2.169` |
| [windows-sys](https://github.com/microsoft/windows-rs) | `0.52.0` | `0.59.0` |


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 `env_logger` from 0.11.5 to 0.11.6
- [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.11.5...v0.11.6)

Updates `inventory` from 0.3.15 to 0.3.16
- [Release notes](https://github.com/dtolnay/inventory/releases)
- [Commits](dtolnay/inventory@0.3.15...0.3.16)

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

Updates `cc` from 1.2.4 to 1.2.5
- [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.5)

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 `env_filter` from 0.1.2 to 0.1.3
- [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@env_filter-v0.1.2...env_filter-v0.1.3)

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 `windows-sys` from 0.52.0 to 0.59.0
- [Release notes](https://github.com/microsoft/windows-rs/releases)
- [Commits](microsoft/windows-rs@0.52.0...0.59.0)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: inventory
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: console
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: encode_unicode
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: env_filter
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: libc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: windows-sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies rust Pull requests that update Rust code labels Dec 23, 2024
@termoshtt termoshtt merged commit f6d8781 into main Dec 23, 2024
12 checks passed
@termoshtt termoshtt deleted the dependabot/cargo/dependencies-4d4ce3b9a4 branch December 23, 2024 04:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant