ratatui-org / crates-tui

A TUI for exploring crates.io using Ratatui
MIT License
59 stars 4 forks source link

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

Closed dependabot[bot] closed 3 weeks ago

dependabot[bot] commented 3 weeks ago

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

Package From To
clap 4.5.4 4.5.7
figment 0.10.18 0.10.19
itertools 0.12.1 0.13.0
libc 0.2.154 0.2.155
ratatui 0.26.2 0.26.3
ratatui-macros 0.3.1 0.4.0
serde 1.0.201 1.0.203
tokio 1.37.0 1.38.0
toml 0.8.12 0.8.14
unicode-width 0.1.12 0.1.13

Updates clap from 4.5.4 to 4.5.7

Release notes

Sourced from clap's releases.

v4.5.7

[4.5.7] - 2024-06-10

Fixes

  • Clean up error message when too few arguments for num_args

v4.5.6

[4.5.6] - 2024-06-06

Changelog

Sourced from clap's changelog.

[4.5.7] - 2024-06-10

Fixes

  • Clean up error message when too few arguments for num_args

[4.5.6] - 2024-06-06

[4.5.5] - 2024-06-06

Fixes

  • Allow exclusive to override required_unless_present, required_unless_present_any, required_unless_present_all
Commits


Updates figment from 0.10.18 to 0.10.19

Commits


Updates itertools from 0.12.1 to 0.13.0

Changelog

Sourced from itertools's changelog.

0.13.0

Breaking

  • Removed implementation of DoubleEndedIterator for ConsTuples (#853)
  • Made MultiProduct fused and fixed on an empty iterator (#835, #834)
  • Changed iproduct! to return tuples for maxi one iterator too (#870)
  • Changed PutBack::put_back to return the old value (#880)
  • Removed deprecated repeat_call, Itertools::{foreach, step, map_results, fold_results} (#878)
  • Removed TakeWhileInclusive::new (#912)

Added

  • Added Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key} (#654, #885)
  • Added Itertools::tail (#899)
  • Implemented DoubleEndedIterator for ProcessResults (#910)
  • Implemented Debug for FormatWith (#931)
  • Added Itertools::get (#891)

Changed

  • Deprecated Itertools::group_by (renamed chunk_by) (#866, #879)
  • Deprecated unfold (use std::iter::from_fn instead) (#871)
  • Optimized GroupingMapBy (#873, #876)
  • Relaxed Fn bounds to FnMut in diff_with, Itertools::into_group_map_by (#886)
  • Relaxed Debug/Clone bounds for MapInto (#889)
  • Documented the use_alloc feature (#887)
  • Optimized Itertools::set_from (#888)
  • Removed badges in README.md (#890)
  • Added "no-std" categories in Cargo.toml (#894)
  • Fixed Itertools::k_smallest on short unfused iterators (#900)
  • Deprecated Itertools::tree_fold1 (renamed tree_reduce) (#895)
  • Deprecated GroupingMap::fold_first (renamed reduce) (#902)
  • Fixed Itertools::k_smallest(0) to consume the iterator, optimized Itertools::k_smallest(1) (#909)
  • Specialized Combinations::nth (#914)
  • Specialized MergeBy::fold (#920)
  • Specialized CombinationsWithReplacement::nth (#923)
  • Specialized FlattenOk::{fold, rfold} (#927)
  • Specialized Powerset::nth (#924)
  • Documentation fixes (#882, #936)
  • Fixed assert_equal for iterators longer than i32::MAX (#932)
  • Updated the must_use message of non-lazy KMergeBy and TupleCombinations (#939)

Notable Internal Changes

  • Tested iterator laziness (#792)
  • Created CONTRIBUTING.md (#767)
Commits
  • d5084d1 Prepare v0.13.0 release (#937)
  • d7c99d5 TupleCombinations is not lazy but must be used nonetheless
  • 074c7fc KMergeBy is not lazy but must be used nonetheless
  • 2ad9e07 assert_equal: fix clippy::default_numeric_fallback
  • 0d4efc8 Remove free function get
  • 05cc0ee get(s..=usize::MAX) should be fine when s != 0
  • 3c16f14 get: when is it ESI and/or DEI
  • 4dd6ba0 get: panics if the range includes usize::MAX
  • 7a9ce56 get(r: Range) as Skip\<Take>
  • f676f2f Remove the unspecified check about .get(exhausted_range_inclusive)
  • Additional commits viewable in compare view


Updates libc from 0.2.154 to 0.2.155

Release notes

Sourced from libc's releases.

0.2.155

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/libc/compare/0.2.154...0.2.155

Commits
  • 7df63bd Merge pull request #3682 from madsmtm/new-version
  • 0bbb5cd Merge pull request #3690 from tesuji/android-posix-spawn
  • 15c74a4 Update version to 0.2.155
  • 664947b Merge pull request #3708 from cuviper/ci-sparc64-0.2
  • 61331df Also skip MFD_EXEC and MFD_NOEXEC_SEAL on sparc64
  • 73d2004 Skip SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV on sparc64
  • 80535f3 Revert "Upgrade Docker images to Ubuntu 23.10" on sparc64
  • b2b2fd7 Readd posix_spawn{_file_actions_t,attr_t} on Android
  • 7646277 Merge pull request #3686 from redox-os/redox-epoll-0.2
  • 5eff703 redox: correct EPOLL constants
  • Additional commits viewable in compare view


Updates ratatui from 0.26.2 to 0.26.3

Release notes

Sourced from ratatui's releases.

v0.26.3

0.26.3 - 2024-05-19

We are happy to announce a brand new Ratatui Forum 🐭 for Rust & TUI enthusiasts.

This is a patch release that fixes the unicode truncation bug, adds performance and quality of life improvements.

Release highlights: https://ratatui.rs/highlights/v0263/

Features

Bug Fixes

  • 366cbae (buffer) Fix Debug panic and fix formatting of overridden parts by @​EdJoPaTo in #1098

    Fix panic in `Debug for Buffer` when `width == 0`.
    Also corrects the output when symbols are overridden.
    
  • 4392759 (examples) Changed user_input example to work with multi-byte unicode chars by @​OkieOth in #1069

    This is the proposed solution for issue [#1068](https://github.com/ratatui-org/ratatui/issues/1068). It solves the bug in the
    user_input example with multi-byte UTF-8 characters as input.
    

... (truncated)

Changelog

Sourced from ratatui's changelog.

0.26.3 - 2024-05-19

We are happy to announce a brand new Ratatui Forum 🐭 for Rust & TUI enthusiasts.

This is a patch release that fixes the unicode truncation bug, adds performance and quality of life improvements.

Release highlights: https://ratatui.rs/highlights/v0263/

Features

Bug Fixes

  • 366cbae (buffer) Fix Debug panic and fix formatting of overridden parts by @​EdJoPaTo in #1098

    Fix panic in `Debug for Buffer` when `width == 0`.
    Also corrects the output when symbols are overridden.
    
  • 4392759 (examples) Changed user_input example to work with multi-byte unicode chars by @​OkieOth in #1069

    This is the proposed solution for issue [#1068](https://github.com/ratatui-org/ratatui/issues/1068). It solves the bug in the
    user_input example with multi-byte UTF-8 characters as input.
    

    Fixes:#1068

... (truncated)

Commits
  • fadc73d chore(release): prepare for 0.26.3 (#1118)
  • fcb5d58 fix: make cargo test --doc work with unstable-widget-ref examples (#1117)
  • 4955380 build: remove pre-push hooks (#1115)
  • 828d17a docs: add minimal example (#1114)
  • 9bd89c2 refactor(clippy): enable breaking lint checks (#988)
  • 2cfe82a refactor(buffer): deprecate assert_buffer_eq! in favor of assert_eq! (#1007)
  • 1a4bb1c perf(layout): avoid allocating memory when using split ergonomic utils (#1105)
  • 839cca2 docs(table): Fix typo in docs for highlight_symbol (#1108)
  • f945a0b docs(test): fix typo in TestBackend documentation (#1107)
  • eb281df feat: use inner Display implementation (#1097)
  • Additional commits viewable in compare view


Updates ratatui-macros from 0.3.1 to 0.4.0

Release notes

Sourced from ratatui-macros's releases.

v0.4.0

Added

  • (layout) [breaking] Use *= instead of =* (#45)
Changelog

Sourced from ratatui-macros's changelog.

0.4.0 - 2024-05-15

Added

  • (layout) [breaking] Use *= instead of =* (#45)
Commits


Updates serde from 1.0.201 to 1.0.203

Release notes

Sourced from serde's releases.

v1.0.203

  • Documentation improvements (#2747)

v1.0.202

  • Provide public access to RenameAllRules in serde_derive_internals (#2743)
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
  • 9e32a40 Release 1.0.202
  • 87f635e Release serde_derive_internals 0.29.1
  • d4b2dfb Merge pull request #2743 from dtolnay/renameallrules
  • f6ab0bc Provide public access to RenameAllRules in serde_derive_internals
  • Additional commits viewable 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 toml from 0.8.12 to 0.8.14

Commits
  • c383efa chore: Release
  • 7bb1781 docs: Update changelog
  • 0af6deb Merge pull request #740 from epage/key-quotes
  • c9e36e7 fix(encode): Prefer literals over escaping double-quotes
  • 42f7a1b test(encode): Show existing quote behavior
  • 9e6290f chore(deps): Update compatible (dev) (#737)
  • dbf1cc1 Merge pull request #736 from epage/snapbox
  • ec9bfd7 chore: Update to snapbox 0.6
  • 881bf67 chore: Remove unused features
  • b62c76e refactor: Resolve deprecations
  • Additional commits viewable in compare view


Updates unicode-width from 0.1.12 to 0.1.13

Commits
  • 612877a Bump to 0.1.13
  • e370cb8 Merge pull request #54 from krasimirgg/rustc
  • 3b82122 adapt for rustc-dep-of-std build
  • d00d357 Merge pull request #52 from Jules-Bertholet/canonically-equivalent-eaw
  • dc86c74 Assign the same CJK width to canonically equivalent strings
  • a2db56b Refactor unicode.py
  • da626ef Merge pull request #49 from Jules-Bertholet/syriac-abbreviation-mark
  • 47bac32 Merge pull request #50 from Jules-Bertholet/remove-old-ci
  • 3742586 Mark more Prepended_Concatenation_Marks as non-advancing
  • 3b56f6d Mark U+A8FA DEVANAGARI CARET as zero-width
  • 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 will merge this PR once CI passes on it, as requested by @joshka.


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
joshka commented 3 weeks ago

@dependabot rebase

dependabot[bot] commented 3 weeks ago

Looks like this PR has been edited by someone other than Dependabot. That means Dependabot can't rebase it - sorry!

If you're happy for Dependabot to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

joshka commented 3 weeks ago

@dependabot squash and merge