Jij-Inc / pyo3-stub-gen

Stub file (*.pyi) generator for PyO3
Apache License 2.0
61 stars 12 forks source link

Bump the dependencies group with 12 updates #87

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the dependencies group with 12 updates:

Package From To
syn 2.0.77 2.0.79
autocfg 1.3.0 1.4.0
libc 0.2.158 0.2.159
once_cell 1.19.0 1.20.1
portable-atomic 1.8.0 1.9.0
redox_syscall 0.5.4 0.5.6
regex 1.10.6 1.11.0
regex-automata 0.4.7 0.4.8
regex-syntax 0.8.4 0.8.5
serde_spanned 0.6.7 0.6.8
toml_edit 0.22.21 0.22.22
winnow 0.6.18 0.6.20

Updates syn from 2.0.77 to 2.0.79

Release notes

Sourced from syn's releases.

2.0.79

  • Fix infinite loop on parsing chained ranges (#1741)
  • Fix panic in parsing use items containing absolute paths (#1742)

2.0.78

  • Fix infinite loop on chained comparison (#1739)
Commits
  • 732e6e3 Release 2.0.79
  • af63396 Merge pull request #1742 from dtolnay/usecrateroot
  • 31e8632 Fix construction of UseGroup containing crate roots
  • 037861a Merge pull request #1741 from dtolnay/binoploop
  • 8df4dd0 Force cursor to advance in parse_expr calls
  • 09d020f Release 2.0.78
  • 7eaebfb Merge pull request #1739 from dtolnay/chainedcomparison
  • b3d2886 Fix infinite loop on chained comparison
  • 3f3d0c5 Add regression test for issue 1738
  • 346efae Touch up PR 1737
  • Additional commits viewable in compare view


Updates autocfg from 1.3.0 to 1.4.0

Commits
  • d07df66 Merge pull request #73 from cuviper/release-1.4.0
  • f6066f0 Release 1.4.0
  • 8af60ec Merge pull request #70 from Techcable/feature/rustc-check-cfg
  • 52a995b Apply suggestions from code review
  • a8703c1 Attempt rust 1.0 compat for ci/verify-check-cfg
  • ac78be8 Add ci test crate for check-cfg
  • 0b4a761 Have emit_has methods delegate wherever possible
  • 546f7c6 Fix minor doc issues
  • e0e0f18 Automatically emit rustc-check-cfg directives for AutoCfg
  • 1953a17 Merge pull request #72 from cuviper/pretty-way
  • Additional commits viewable in compare view


Updates libc from 0.2.158 to 0.2.159

Release notes

Sourced from libc's releases.

0.2.159

Added

Fixed

Changed

Changelog

Sourced from libc's changelog.

0.2.159 - 2024-09-24

Added

Fixed

Changed

Commits
  • 7373a1a chore: release (#3862)
  • 48668be Merge pull request #3931 from tgross35/backport-remove-tmp-file
  • 28bb64b Remove temporary file that was added by accident
  • a515d07 Merge pull request #3904 from tgross35/backport-buildrs-fix
  • abcb8f8 Simplify the RUSTC_WRAPPER check
  • 5078335 Fix rustc version when clippy-driver is used
  • 57a7d46 Merge pull request #3902 from tgross35/backport-horizon-network
  • a3e8869 Revise network definitions for HorizonOS
  • fdd3a26 Merge pull request #3900 from tgross35/espid-cherry-pick
  • 35060e8 Merge pull request #3901 from tgross35/backport-epoll_pwait2
  • Additional commits viewable in compare view


Updates once_cell from 1.19.0 to 1.20.1

Changelog

Sourced from once_cell's changelog.

1.20.1

  • Allow using race module using just portable_atomic, without critical_section and provide better error messages on targets without atomic CAS instruction, #265.
Commits
  • 3b9bd9b release 1.20.1
  • f61508a Merge pull request #265 from taiki-e/portable-atomic
  • 449e5d7 Add portable-atomic feature and disable portable-atomic/critical-section by d...
  • 72f7c2e Merge pull request #260 from brodycj/propagate-critical-section-to-portable-a...
  • be6b623 v1.20.0
  • f2d95bf update Cargo (dev-)dependencies; update Cargo.lock.msrv
  • dd6b5c2 ci: fix TEST_BETA with TEMPORARY WORKAROUND in RUSTFLAGS
  • 7317eae add cargo test --workspace to beginning of TEST task
  • bd54bf7 fix default-features flag for parking_lot_core in dependencies
  • bb70b9e cargo fmt updates
  • Additional commits viewable in compare view


Updates portable-atomic from 1.8.0 to 1.9.0

Changelog

Sourced from portable-atomic's changelog.

[1.9.0] - 2024-09-28

  • RISC-V without A-extension: Support RMW when Zaamo extension enabled (even when unsafe-assume-single-core disabled). (#185, 9983a8b) See "operations don't require disabling interrupts" list in interrupt module's readme for the operations provided.

  • Support run-time detection of RISC-V Zacas extension (currently disabled by default). (#183)

  • Support 128-bit atomics on Arm64EC (currently nightly-only) (#184)

  • Improve compile-time detection of powerpc64 quadword-atomics. (3eb8507)

Commits
  • 76d9ad5 Release portable-atomic 1.9.0
  • 7b75991 tools: Update tidy.sh
  • ab67826 Update changelog
  • d587a5f tests: Clean up helper macros
  • 3b19e14 codegen: Update tests/helper/src/gen/sys
  • 3eb8507 powerpc64: quadword-atomics target_feature now available on rustc side
  • 66b25f8 ci: Use taiki-e/github-actions/install-rust action
  • d57150e ci: Update FreeBSD 13 to 13.4
  • 02597c5 Document portable_atomic_target_feature="zaamo" cfg
  • 9983a8b riscv: Provide all operations of AtomicBool when Zaamo enabled
  • Additional commits viewable in compare view


Updates redox_syscall from 0.5.4 to 0.5.6

Updates regex from 1.10.6 to 1.11.0

Changelog

Sourced from regex's changelog.

1.11.0 (2024-09-29)

This is a new minor release of regex that brings in an update to the Unicode Character Database. Specifically, this updates the Unicode data used by regex internally to the version 16 release.

New features:

Commits


Updates regex-automata from 0.4.7 to 0.4.8

Commits


Updates regex-syntax from 0.8.4 to 0.8.5

Commits


Updates serde_spanned from 0.6.7 to 0.6.8

Commits


Updates toml_edit from 0.22.21 to 0.22.22

Commits


Updates winnow from 0.6.18 to 0.6.20

Changelog

Sourced from winnow's changelog.

[0.6.20] - 2024-09-25

Internal

  • Dependency update

[0.6.19] - 2024-09-24

Features

  • Add Located::reset_to_start for parsing encoded graphs with start-relative pointers
Commits
  • 5f5498a chore: Release
  • c302ed6 docs: Update changelog
  • 1f555aa Merge pull request #596 from waywardmonkeys/update-terminal_size
  • d1310df chore(deps): Update terminal_size to 0.4.0
  • 24aeb1e chore: Release
  • a86979d docs: Update changelog
  • 7a3675d Merge pull request #595 from epage/reset
  • 2dc8e72 feat(stream): Allow reseting streams to an absolute position
  • efeda0f docs(ref): Add more combinator descriptions
  • 95e0c10 Merge pull request #585 from DJDuque/fix-fold-docs
  • Additional commits viewable in compare view


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
dependabot[bot] commented 1 month ago

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