stadust / pointercrate

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

Build(deps): Bump the pointercrate group with 9 updates #138

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the pointercrate group with 9 updates:

Package From To
tokio 1.37.0 1.38.0
backtrace 0.3.71 0.3.72
gimli 0.28.1 0.29.0
hyper-util 0.1.4 0.1.5
native-tls 0.2.11 0.2.12
object 0.32.2 0.35.0
proc-macro2 1.0.84 1.0.85
tokio-macros 2.2.0 2.3.0
winnow 0.6.8 0.6.9

Updates tokio from 1.37.0 to 1.38.0

Release notes

Sourced from tokio's releases.

Tokio v1.38.0

This release marks the beginning of stabilization for runtime metrics. It stabilizes RuntimeMetrics::worker_count. Future releases will continue to stabilize more metrics.

Added

  • fs: add File::create_new (#6573)
  • io: add copy_bidirectional_with_sizes (#6500)
  • io: implement AsyncBufRead for Join (#6449)
  • net: add Apple visionOS support (#6465)
  • net: implement Clone for NamedPipeInfo (#6586)
  • net: support QNX OS (#6421)
  • sync: add Notify::notify_last (#6520)
  • sync: add mpsc::Receiver::{capacity,max_capacity} (#6511)
  • sync: add split method to the semaphore permit (#6472, #6478)
  • task: add tokio::task::join_set::Builder::spawn_blocking (#6578)
  • wasm: support rt-multi-thread with wasm32-wasi-preview1-threads (#6510)

Changed

  • macros: make #[tokio::test] append #[test] at the end of the attribute list (#6497)
  • metrics: fix blocking_threads count (#6551)
  • metrics: stabilize RuntimeMetrics::worker_count (#6556)
  • runtime: move task out of the lifo_slot in block_in_place (#6596)
  • runtime: panic if global_queue_interval is zero (#6445)
  • sync: always drop message in destructor for oneshot receiver (#6558)
  • sync: instrument Semaphore for task dumps (#6499)
  • sync: use FIFO ordering when waking batches of wakers (#6521)
  • task: make LocalKey::get work with Clone types (#6433)
  • tests: update nix and mio-aio dev-dependencies (#6552)
  • time: clean up implementation (#6517)
  • time: lazily init timers on first poll (#6512)
  • time: remove the true_when field in TimerShared (#6563)
  • time: use sharding for timer implementation (#6534)

Fixed

  • taskdump: allow building taskdump docs on non-unix machines (#6564)
  • time: check for overflow in Interval::poll_tick (#6487)
  • sync: fix incorrect is_empty on mpsc block boundaries (#6603)

Documented

  • fs: rewrite file system docs (#6467)
  • io: fix stdin documentation (#6581)
  • io: fix obsolete reference in ReadHalf::unsplit() documentation (#6498)
  • macros: render more comprehensible documentation for select! (#6468)
  • net: add missing types to module docs (#6482)
  • net: fix misleading NamedPipeServer example (#6590)

... (truncated)

Commits


Updates backtrace from 0.3.71 to 0.3.72

Release notes

Sourced from backtrace's releases.

0.3.72

This release removes a lot of dead code. Some feature flags that haven't done anything in a long time are gone. If you depend on those features, Cargo's resolver will not update you to 0.3.72.

If your code runs on Windows, or you want it to run on visionOS, however, you should probably update to this version. It contains a number of fixes for both OS. It also uses the latest version of a number of dependencies.

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/backtrace-rs/compare/0.3.71...0.3.72

Commits


Updates gimli from 0.28.1 to 0.29.0

Changelog

Sourced from gimli's changelog.

0.29.0

Released 2024/04/11.

Breaking changes

  • Changed Reader type parameter to ReaderOffset for read::UnwindContext and related types. Replaced Expression with UnwindExpression in unwind information types. #703

Changed

  • Changed write::Sections::for_each and for_each_mut to specify section lifetime. #699

  • Fixed writing unwind information with an LSDA encoding that is not DW_EH_PE_absptr. #704

  • Fixed parsing for an empty DWP index. #706

  • Improved error handling in read::Unit::dwo_name. #693

  • Fixed warnings. #692 #694 #695 #696

Added

  • Added MIPS register definitions. #690

  • Added PowerPC register definitions. #691

  • Added read::DwarfSections and read::DwarfPackageSections. #698

  • Implemented BitOr for DwEhPe. #709

  • Added read::Relocate, read::RelocateReader, and write::RelocateWriter. #709


Commits


Updates hyper-util from 0.1.4 to 0.1.5

Release notes

Sourced from hyper-util's releases.

v0.1.5

What's Changed

  • Add server::graceful::GracefulShutdown helper to coordinate over many connections.
  • Add server::conn::auto::Connection::into_owned() to unlink lifetime from Builder.
  • Allow service module to be available with only service feature enabled.

New Contributors

Full Changelog: https://github.com/hyperium/hyper-util/compare/v0.1.4...v0.1.5

Changelog

Sourced from hyper-util's changelog.

0.1.5 (2024-05-28)

  • Add server::graceful::GracefulShutdown helper to coordinate over many connections.
  • Add server::conn::auto::Connection::into_owned() to unlink lifetime from Builder.
  • Allow service module to be available with only service feature enabled.
Commits
  • 195e312 v0.1.5
  • bb5c148 feat: add GracefulShutdown helper (#127)
  • 97714e5 fix compile failure for legacy::Error
  • b24f563 feat(service): relax service module feature (#109)
  • dd6466b refactor: improve fmt::Debug for legacy::Error (#99)
  • 8f29948 feat: add auto Connection::into_owned
  • de96999 chore: set rust-version in Cargo.toml (#126)
  • 6d7da1a refactor(client): replace deprecated numeric api with primitive one (#125)
  • See full diff in compare view


Updates native-tls from 0.2.11 to 0.2.12

Release notes

Sourced from native-tls's releases.

v0.2.12

What's Changed

New Contributors

Full Changelog: https://github.com/sfackler/rust-native-tls/compare/v0.2.11...v0.2.12

Changelog

Sourced from native-tls's changelog.

Change Log

[Unreleased]

Commits
  • 5ed6bd1 Release v0.2.12
  • 0af3169 Merge pull request #294 from simlay/add-visionos-support
  • 9a5d8ce Added visionos target support
  • 6ba3cf1 Merge pull request #295 from simlay/make-tempfile-be-a-macos-specific-dependency
  • 3018442 Make tempfile be a macos-only dependency
  • 0b69ce6 Merge pull request #285 from simlay/add-tvos-and-watchos-target-flags
  • 6e462d6 cargo fmt
  • 14ef1ce Update ci.yml
  • 5375254 Add tvOS and watchOS support
  • 5db1b77 Merge pull request #279 from tamird/mutex-new-const
  • Additional commits viewable in compare view


Updates object from 0.32.2 to 0.35.0

Changelog

Sourced from object's changelog.

0.35.0

Released 2024/04/10.

Breaking changes

  • Moved the 'file lifetime parameter from read::Object to its associated types. #655

Added

  • Added support more section kinds in build::elf. #650

  • Added thin archive support to read::ArchiveFile. #651

  • Added read::ReadCacheOps and changed read::ReadCache bound from Read + Seek to ReadCacheOps. #652

  • Added read::ObjectSection::relocation_map #654

  • Added read::ArchiveFile::symbols. #658

  • Added BinaryFormat::native_object. #661

Changed

  • The minimum supported rust version for the read feature and its dependencies has changed to 1.65.0. #655

  • Fixed sh_offset handling for SHT_NOBITS sections in build::elf. #645

  • Fixed handling of ELF files with dynamic symbols but no dynamic strings. #646

  • Fixed potential panics in read::WasmFile due to invalid function indices. #649

  • Fixed handling of Wasm components in read::WasmFile. #649

  • Fixed sh_entsize for 32-bit hash sections in write::elf. #650

... (truncated)

Commits


Updates proc-macro2 from 1.0.84 to 1.0.85

Release notes

Sourced from proc-macro2's releases.

1.0.85

  • Mark some tests as only for 64-bit targets (#463)
Commits


Updates tokio-macros from 2.2.0 to 2.3.0

Commits


Updates winnow from 0.6.8 to 0.6.9

Changelog

Sourced from winnow's changelog.

[0.6.9] - 2024-05-28

Compatibility

  • Bump MSRV to 1.65

Features

  • Add Debug impls for stream::Stateful and stream::Recoverable
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