stadust / pointercrate

Rewrite of the https://pointercrate.com backend in Rust
MIT License
80 stars 52 forks source link

Build(deps): Bump the pointercrate group across 1 directory with 10 updates #149

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps the pointercrate group with 8 updates in the / directory:

Package From To
tokio 1.38.0 1.38.1
cc 1.1.4 1.1.6
portable-atomic 1.6.0 1.7.0
raw-cpuid 11.0.2 11.1.0
rustls-webpki 0.102.5 0.102.6
thiserror 1.0.62 1.0.63
toml 0.8.14 0.8.15
winnow 0.6.13 0.6.15

Updates tokio from 1.38.0 to 1.38.1

Release notes

Sourced from tokio's releases.

Tokio v1.38.1

1.38.1 (July 16th, 2024)

This release fixes the bug identified as (#6682), which caused timers not to fire when they should.

Fixed

  • time: update wake_up while holding all the locks of sharded time wheels (#6683)

#6682: tokio-rs/tokio#6682 #6683: tokio-rs/tokio#6683

Commits


Updates cc from 1.1.4 to 1.1.6

Release notes

Sourced from cc's releases.

cc-v1.1.6

Other

cc-v1.1.5

Other

  • Fix cyclic compilation: Use vendored once_cell (#1154)
Changelog

Sourced from cc's changelog.

1.1.6 - 2024-07-19

Other

1.1.5 - 2024-07-15

Other

  • Fix cyclic compilation: Use vendored once_cell (#1154)
Commits


Updates portable-atomic from 1.6.0 to 1.7.0

Changelog

Sourced from portable-atomic's changelog.

[1.7.0] - 2024-07-19

  • Support run-time detection for cmpxchg16b on x86_64 on pre-1.69 rustc. (#154)

  • Make into_inner const fn on Rust 1.56+. (align to the std atomic change in Rust 1.79) (dee1f89)

  • Work around rustc_codegen_gcc bug on x86_64. (d938f77)

  • Optimize x86_64 atomics.

    • Optimize 128-bit load/store on Zhaoxin CPU with AVX. (86cee8f)
    • Optimize 128-bit SeqCst store on Intel/AMD/Zhaoxin CPU with AVX. (#156, 0483042)
    • Remove needless test in CAS. (573e025)
  • Make rustc version detection robust for custom toolchains. (f8ea85e)

  • Respect RUSTC_WRAPPER in rustc version detection.

  • Our build script is now less likely to be re-run unnecessarily in versions where the cargo bug fix is available (cargo 1.79+). (52c277b)

Commits
  • e10c624 Release portable-atomic 1.7.0
  • 195bc74 Update changelog
  • 8a3181c Update arm/aarch64-related comments
  • 3a3965d detect: Reduce scope of #[allow]
  • 11bbfbc Add todo comments
  • 4a78b8b Update docs to mention portable-atomic-util
  • 0483042 x86_64: Use xchg instead of lock or
  • 86cee8f x86_64: Optimize 128-bit atomic load/store on Zhaoxin CPU with AVX
  • 58a2ebb Update esp-hal requirement from 0.18 to 0.19 in /tests/xtensa
  • dbf36ed Update esp-println requirement from 0.9 to 0.10 in /tests/xtensa
  • Additional commits viewable in compare view


Updates raw-cpuid from 11.0.2 to 11.1.0

Changelog

Sourced from raw-cpuid's changelog.

[11.1.0] - 2024-07-17

  • Support for more AVX512 Extended Features
Commits


Updates rustls-webpki from 0.102.5 to 0.102.6

Release notes

Sourced from rustls-webpki's releases.

0.102.6

  • Add support for P-521 curve with SHA-256/SHA-384 digests

What's Changed

New Contributors

Full Changelog: https://github.com/rustls/webpki/compare/v/0.102.5...v/0.102.6

Commits
  • 1b7f39b Prepare 0.102.6
  • 917b1ba Add support for P-521 curve with SHA-256/SHA-384 digests (#272)
  • 97242e5 Update reference in test generation code
  • 36f697f Update EndEntityCert documentation
  • 89ecb19 build(deps): bump serde from 1.0.203 to 1.0.204 in the crates-io group
  • fac0431 types: avoid markdown footnotes
  • See full diff in compare view


Updates thiserror from 1.0.62 to 1.0.63

Release notes

Sourced from thiserror's releases.

1.0.63

  • Documentation improvements
Commits


Updates thiserror-impl from 1.0.62 to 1.0.63

Release notes

Sourced from thiserror-impl's releases.

1.0.63

  • Documentation improvements
Commits


Updates toml from 0.8.14 to 0.8.15

Commits
  • 9217e44 chore: Release
  • 003ce94 docs: Update changelog
  • b463f3d Merge pull request #757 from epage/key
  • 3d8852b fix(encode): Be extra sure it can be a literal
  • e1bc1c3 refactor(encode): Pull out literal inference
  • fbb0ac2 test(encode): Add property-based tests for keys/strings
  • 0b268f2 fix(encode): Correct encoding for key with mixed quotes
  • 82c0195 refactor(encode): Make str repr inferring clearer
  • 330b590 refactor(encode): Extract all str repr inferring
  • 00fb5ee test(edit): Add more roundtrip testing
  • Additional commits viewable in compare view


Updates toml_edit from 0.22.15 to 0.22.16

Commits
  • 9217e44 chore: Release
  • 003ce94 docs: Update changelog
  • b463f3d Merge pull request #757 from epage/key
  • 3d8852b fix(encode): Be extra sure it can be a literal
  • e1bc1c3 refactor(encode): Pull out literal inference
  • fbb0ac2 test(encode): Add property-based tests for keys/strings
  • 0b268f2 fix(encode): Correct encoding for key with mixed quotes
  • 82c0195 refactor(encode): Make str repr inferring clearer
  • 330b590 refactor(encode): Extract all str repr inferring
  • 00fb5ee test(edit): Add more roundtrip testing
  • Additional commits viewable in compare view


Updates winnow from 0.6.13 to 0.6.15

Changelog

Sourced from winnow's changelog.

[0.6.15] - 2024-07-22

Compatibility

  • Deprecated Parser::recognize in favor of Parser::take
  • Deprecated Parser::with_recognized in favor of Parser::taken

Fixes

  • Renamed Parser::recognize to Parser::take to be consistent with other take parsers
  • Renamed Parser::with_recognized to Parser::with_taken to be consistent with other take parsers

[0.6.14] - 2024-07-19

Fixes

  • Removed unused I: Clone bound on Parser::parse
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 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