iopsystems / rezolus

Systems performance telemetry
Other
48 stars 8 forks source link

chore(deps): bump the cargo-dependencies group across 1 directory with 19 updates #271

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the cargo-dependencies group with 11 updates in the / directory:

Package From To
backtrace 0.3.71 0.3.72
ouroboros 0.18.3 0.18.4
serde 1.0.202 1.0.203
tokio 1.37.0 1.38.0
libbpf-sys 1.4.1+v1.4.0 1.4.2+v1.4.2
perf-event2 0.7.2 0.7.4
async-compression 0.4.10 0.4.11
brotli-decompressor 4.0.0 4.0.1
parking_lot 0.12.2 0.12.3
perf-event-data 0.1.4 0.1.6
proc-macro2 1.0.83 1.0.85

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 ouroboros from 0.18.3 to 0.18.4

Commits


Updates serde from 1.0.202 to 1.0.203

Release notes

Sourced from serde's releases.

v1.0.203

  • Documentation improvements (#2747)
Commits
  • d5bc546 Release 1.0.203
  • 45ae217 Merge pull request #2747 from dtolnay/variadic
  • b7b97dd Unindent implementation inside tuple_impl_body macro
  • 5d3c563 Document tuple impls as fake variadic
  • 3761854 Merge pull request #2745 from dtolnay/docsrs
  • a8f1484 Rely on docs.rs to define --cfg=docsrs by default
  • See full diff in compare view


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 libbpf-sys from 1.4.1+v1.4.0 to 1.4.2+v1.4.2

Commits


Updates perf-event2 from 0.7.2 to 0.7.4

Commits
  • aa2a46d Release v0.7.4
  • e0525ff Release sys-v5.0.5
  • aba1df2 Actually add the bindings module (#56)
  • d1b8484 Add perf-event-open-sys bindings for riscv64gc (#55)
  • e272f25 Fix a clippy warning (#54)
  • 6579752 Add a bunch more builder method for perf_event_attr fields (#53)
  • b23527b Update all manpage links to point to mankier.com (#52)
  • d8c1f33 Group exports via rustfmt std-extern-crate (#50)
  • 3beb774 Allow reconfiguring the event within the builder (#49)
  • 4cb9fa1 Access perf_event_attr fields directly instead of via anon fields (#47)
  • Additional commits viewable in compare view


Updates addr2line from 0.21.0 to 0.22.0

Changelog

Sourced from addr2line's changelog.

0.22.0 (2024/04/11)

Breaking changes

  • Updated gimli and object dependencies.

Commits


Updates async-compression from 0.4.10 to 0.4.11

Changelog

Sourced from async-compression's changelog.

0.4.11 - 2024-05-30

Other

  • Expose total_in/total_out from underlying flate2 encoder types.
Commits
  • e381041 Merge pull request #279 from Nullus157/release-plz-2024-05-30T06-55-56Z
  • 46e3961 chore: release
  • fd77c55 Merge pull request #278 from tobz/tobz/expose-encoder-stats-methods
  • 1fcbb9c Expose total_in/total_out from underlying flate2 encoder types.
  • See full diff in compare view


Updates brotli-decompressor from 4.0.0 to 4.0.1

Commits


Updates c-enum from 0.1.2 to 0.2.3

Release notes

Sourced from c-enum's releases.

v0.2.2

Changed

  • c_enum! will now emit the error message about multiple declarations in a block in most cases matching needing to be migrated to v0.2.0.

What's Changed

Full Changelog: https://github.com/Phantomical/c-enum/compare/v0.2.1...v0.2.2

v0.2.1

Changed

  • c_enum! will now emit a custom error message indicating that declaring multiple enums in a single c_enum! block is not supported anymore.

What's Changed

Full Changelog: https://github.com/Phantomical/c-enum/compare/v0.2.0...v0.2.1

v0.2.0

0.2.0 - 2023-10-23

Added

  • c_enum! now has some extra syntax to allow directly applying attributes to the generated impl block.

Changed

  • It is now only possible to define a single enum instance within a c_enum!. This is to allow additional syntax in the future that is not supported when the macro allows multiple enum definitions.

What's Changed

Full Changelog: https://github.com/Phantomical/c-enum/compare/v0.1.2...v0.2.0

Changelog

Sourced from c-enum's changelog.

0.2.3 - 2024-02-07

Fixed

  • c_enum! can now handle enums with more than 128 variants without hitting the macro recursion limit. Enums with more than 10k variants will still hit it eventually but this is less likely to be an issue for most.

0.2.2 - 2023-10-23

Changed

  • c_enum! will now emit the error message about multiple declarations in a block in most cases matching needing to be migrated to v0.2.0.

0.2.1 - 2023-10-23

Changed

  • c_enum! will now emit a custom error message indicating that declaring multiple enums in a single c_enum! block is not supported anymore.

0.2.0 - 2023-10-23

Added

  • c_enum! now has some extra syntax to allow directly applying attributes to the generated impl block.

Changed

  • It is now only possible to define a single enum instance within a c_enum!. This is to allow additional syntax in the future that is not supported when the macro allows multiple enum definitions.
Commits
  • e91f465 v0.2.3
  • ea51ab4 Match multiple fields at a time in order to support larger enums
  • 9f462eb v0.2.2
  • f794902 Improve the cases in which c_enum! will detect multiple declarations
  • d78cb0d Add a missing pub to the generated code example (#12)
  • d9d4991 v0.2.1
  • 7ef6f82 Improve error messages for multiple enums in a c_enum! block (#11)
  • 119b106 v0.2.0 (#10)
  • 39b3917 Allow setting attributes on the generated impl block (#9)
  • c568104 Only allow a single struct definition per c_enum! macro (#8)
  • Additional commits viewable in compare view


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 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 ouroboros_macro from 0.18.3 to 0.18.4

Commits


Updates parking_lot from 0.12.2 to 0.12.3

Changelog

Sourced from parking_lot's changelog.

parking_lot 0.12.3 (2024-05-24)

  • Export types provided by arc_lock feature (#442)
Commits
  • a29dd3d Release parking_lot 0.12.3
  • f7efcae Merge pull request #442 from iwanders/add-arc_lock-feature-top-level-exports
  • c357017 Export types provided by arc_lock feature.
  • See full diff in compare view


Updates perf-event-data from 0.1.4 to 0.1.6

Changelog

Sourced from perf-event-data's changelog.

[0.1.6] - 2023-05-21

Fixed

  • Parsing a PERF_SAMPLE_RAW field in Sample now properly handles padding bytes when the field size is not a multiple of 8 bytes.
  • Parsing a PERF_SAMPLE_STACK_USER field in Sample will no longer parse the dyn_size field when the static stack size is 0.

[0.1.5] - 2023-05-21

Fixed

  • Parse the header for the PERF_SAMPLE_RAW field in Sample as a u32 instead of a u64.
Commits


Updates perf-event-open-sys2 from 5.0.3 to 5.0.5

Commits
  • e0525ff Release sys-v5.0.5
  • aba1df2 Actually add the bindings module (#56)
  • d1b8484 Add perf-event-open-sys bindings for riscv64gc (#55)
  • e272f25 Fix a clippy warning (#54)
  • 6579752 Add a bunch more builder method for perf_event_attr fields (#53)
  • b23527b Update all manpage links to point to mankier.com (#52)
  • d8c1f33 Group exports via rustfmt std-extern-crate (#50)
  • 3beb774 Allow reconfiguring the event within the builder (#49)
  • 4cb9fa1 Access perf_event_attr fields directly instead of via anon fields (#47)
  • d331387 Release sys-v5.0.4
  • Additional commits viewable in compare view


Updates proc-macro2 from 1.0.83 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)

1.0.84

Commits
  • 5ee1cab Release 1.0.85
  • aa64c20 Merge pull request #464 from dtolnay/testsize
  • bc9f4d9 Ignore size tests on non-64bit target
  • 1160ec3 Make size tests #[ignore] in cfg(randomize_layout)
  • 33c9578 Release 1.0.84
  • d850da5 Merge pull request #455 from CensoredUsername/master
  • eabac15 Add a warning to Delimiter::None that rustc currently does not respect it.
  • See full diff in compare view


Updates serde_derive from 1.0.202 to 1.0.203

Release notes

Sourced from serde_derive's releases.

v1.0.203

  • Documentation improvements (#2747)
Commits
  • d5bc546 Release 1.0.203
  • 45ae217 Merge pull request #2747 from dtolnay/variadic
  • b7b97dd Unindent implementation inside tuple_impl_body macro
  • 5d3c563 Document tuple impls as fake variadic
  • 3761854 Merge pull request #2745 from dtolnay/docsrs
  • a8f1484 Rely on docs.rs to define --cfg=docsrs by default
  • See full diff in compare view


Updates tokio-macros from 2.2.0 to 2.3.0

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

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