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 7 updates #146

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dependencies group with 7 updates:

Package From To
inventory 0.3.17 0.3.19
syn 2.0.96 2.0.98
bumpalo 3.16.0 3.17.0
cc 1.2.10 1.2.11
toml_edit 0.22.22 0.22.23
unicode-ident 1.0.15 1.0.16
winnow 0.6.24 0.7.0

Updates inventory from 0.3.17 to 0.3.19

Release notes

Sourced from inventory's releases.

0.3.19

0.3.18

  • Documentation improvements
Commits
  • dad50ac Release 0.3.19
  • f0396e4 Merge pull request #79 from lefebvreb/master
  • 05ff319 Manually implement Clone for Iter
  • 860bfc2 Release 0.3.18
  • d60c31a Merge pull request 78 from coolcatcoder/master
  • 5e5dc1b add wasm export example in documentation
  • eb057d7 Fix -Zrandomize-layout setting in Windows jobs
  • c723113 Ignore Windows linker warning
  • 9546fdf More precise gitignore patterns
  • 12851e7 Remove **/*.rs.bk from project-specific gitignore
  • See full diff in compare view

Updates syn from 2.0.96 to 2.0.98

Release notes

Sourced from syn's releases.

2.0.98

  • Allow lifetimes in function pointer return values in ParseStream::call and Punctuated parsers (#1847)

2.0.97

  • Documentation improvements
Commits
  • 71f3808 Release 2.0.98
  • f0c57ee Merge pull request #1847 from dtolnay/lifetimes
  • 4307f64 Allow lifetimes in function pointer return values
  • d15bdea Release 2.0.97
  • bf672a9 Merge pull request #1846 from dtolnay/surroundcfg
  • f0ee7e9 Fix missing doc cfg on <$Delimiter>::surround
  • e0e40cf Resolve unnecessary_semicolon pedantic clippy lint
  • 6ebd966 Resolve sliced_string_as_bytes clippy lint
  • a09b650 More precise gitignore patterns
  • 42601b9 Resolve needless_continue pedantic clippy lint
  • Additional commits viewable in compare view

Updates bumpalo from 3.16.0 to 3.17.0

Changelog

Sourced from bumpalo's changelog.

3.17.0

Released 2025-01-28.

Added

  • Added a bunch of try_ allocation methods for slices and str:
    • try_alloc_slice_fill_default
    • try_alloc_slice_fill_iter
    • try_alloc_slice_fill_clone
    • try_alloc_slice_fill_copy
    • try_alloc_slice_fill_with
    • try_alloc_str
    • try_alloc_slice_clone
    • try_alloc_slice_copy

Changed

  • Minimum supported Rust version reduced to 1.71.1

Fixed

  • Fixed a stacked-borrows MIRI bug in dealloc

Commits

Updates cc from 1.2.10 to 1.2.11

Release notes

Sourced from cc's releases.

cc-v1.2.11

Other

  • Fix more flag inheritance (#1380)
  • Include wrapper args. in stdout family heuristics to restore classifying clang --driver-mode=cl as Msvc { clang_cl: true } (#1378)
  • Constrain -Clto and -Cembed-bitcode flag inheritance to be clang-only (#1379)
  • Pass deployment target with -m*-version-min= (#1339)
  • Regenerate target info (#1376)
Changelog

Sourced from cc's changelog.

1.2.11 - 2025-01-31

Other

  • Fix more flag inheritance (#1380)
  • Include wrapper args. in stdout family heuristics to restore classifying clang --driver-mode=cl as Msvc { clang_cl: true } (#1378)
  • Constrain -Clto and -Cembed-bitcode flag inheritance to be clang-only (#1379)
  • Pass deployment target with -m*-version-min= (#1339)
  • Regenerate target info (#1376)
Commits
  • 81929fa chore: release v1.2.11 (#1377)
  • a10fd61 Fix more flag inheritance (#1380)
  • 3a4a86d Include wrapper args. in stdout family heuristics to restore classifying `c...
  • 65b4d9a Constrain -Clto and -Cembed-bitcode flag inheritance to be clang-only (...
  • 8533e8c Pass deployment target with -m*-version-min= (#1339)
  • bf4dcf7 Regenerate target info (#1376)
  • e65d160 Update rusqlite requirement from 0.32.0 to 0.33.0 (#1374)
  • See full diff in compare view

Updates toml_edit from 0.22.22 to 0.22.23

Commits
  • 15496f1 chore: Release
  • 1131ce8 docs: Update changelog
  • 4776fca Merge pull request #827 from epage/winnow07
  • 754769b chore: Upgrade to Winnow 0.7
  • 9415da2 refactor(parser): Switch to ModalParser
  • 5dfa5b0 chore: Upgrade to winnow 0.6.26
  • e92c3b6 Merge pull request #825 from slivingston/update-docs
  • 017a74d docs(readme): Update example to prefer DocumentMut
  • a07313e chore(deps): Update Rust Stable to v1.84 (#822)
  • 8da356f chore(deps): Update compatible (dev) (#821)
  • Additional commits viewable in compare view

Updates unicode-ident from 1.0.15 to 1.0.16

Release notes

Sourced from unicode-ident's releases.

1.0.16

  • Update rand dev dependency to 0.9 (#29)
Commits

Updates winnow from 0.6.24 to 0.7.0

Changelog

Sourced from winnow's changelog.

[0.7.0] - 2025-01-30

Migration Guide

  1. Upgrade to the latest 0.6 release
  2. Resolve all deprecations
  3. Replace impl Parser<_, _, _> with impl ModalParser<_, _, _>
  4. Upgrade to 0.7.0
  5. Resolve any compiler errors
  • For custom errors, remove switch from from_error_kind to from_input and remove other kind parameters
  • For seq!(<tuple>), you may need to add mut to shared parsers
  • For Stream::peek* calls, update for lack of Stream being returned
  • Where ModalParser couldn't be used, change Parser<I, O, E> to Parser<I, O, ErrMode<E>>
  1. Resolve all deprecations

If you do not use cut_err or Partial, you can further clean up the code and improve performance by removing the use of ErrMode

  • Replace ModalResult<O, E> with winnow::Result<O> (if using default error type) or just Result<O, E>
  • Replace impl ModalParser with impl Parser
  • Remove uses of ErrMode

Compatibility

  • escaped and take_escaped now assert, rather than stop, on empty normal output
  • Some parsers used in seq(<tuple>) must now be mut
  • Stream::peek_token, Stream::peek_slice, Stream::peek_finish no longer return a clone of Stream
  • trait Locations functions have changed to improve parsing of lexed tokens
  • ParserError::append and FromExternalError::from_external_errors kind parameter has been removed
  • ParserError, AsChar, ContainsToken, Stream were added to the prelude
  • Some trait bounds changed
  • Deprecated functionality removed
  • Deprecated escaped_transform in favor of the new name escaped

Features

  • Decoupled ErrMode from the core traits through new ModalError trait and ParserError modal functions, allowing better performance and greater flexibility
  • Add ParserError, AsChar, ContainsToken, Stream to the prelude
  • Add stream::TokenSlice to help parsing of lexed tokens
  • Implement ErrorConvert for ErrMode

Fixes

  • Borrow parsers in seq!(<tuple>) so they can be used multiple times
  • escaped and take_escaped now assert, rather than stop, on empty normal output
  • Improve type inference for Parser::by_ref, Parser::complete_err
  • Improve error reports for float
  • Added an inherent ParserError::append to reduce boilerplate with custom errors
  • Added support for TreeError with binary::bits parsers
  • escaped can now have separate types for normal and escaped parsers

Documentation

... (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 7 updates:

| Package | From | To |
| --- | --- | --- |
| [inventory](https://github.com/dtolnay/inventory) | `0.3.17` | `0.3.19` |
| [syn](https://github.com/dtolnay/syn) | `2.0.96` | `2.0.98` |
| [bumpalo](https://github.com/fitzgen/bumpalo) | `3.16.0` | `3.17.0` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.10` | `1.2.11` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.22.22` | `0.22.23` |
| [unicode-ident](https://github.com/dtolnay/unicode-ident) | `1.0.15` | `1.0.16` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.6.24` | `0.7.0` |


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

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

Updates `bumpalo` from 3.16.0 to 3.17.0
- [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md)
- [Commits](fitzgen/bumpalo@3.16.0...3.17.0)

Updates `cc` from 1.2.10 to 1.2.11
- [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.10...cc-v1.2.11)

Updates `toml_edit` from 0.22.22 to 0.22.23
- [Commits](toml-rs/toml@v0.22.22...v0.22.23)

Updates `unicode-ident` from 1.0.15 to 1.0.16
- [Release notes](https://github.com/dtolnay/unicode-ident/releases)
- [Commits](dtolnay/unicode-ident@1.0.15...1.0.16)

Updates `winnow` from 0.6.24 to 0.7.0
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.6.24...v0.7.0)

---
updated-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: bumpalo
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cc
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: toml_edit
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: unicode-ident
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: winnow
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies rust Pull requests that update Rust code labels Feb 3, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 10, 2025

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

@dependabot dependabot bot closed this Feb 10, 2025
@dependabot dependabot bot deleted the dependabot/cargo/dependencies-79ecbcbded branch February 10, 2025 04:55
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.

0 participants