Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the dependencies group with 13 updates #441

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2024

Bumps the dependencies group with 13 updates:

Package From To
anyhow 1.0.89 1.0.91
clap 4.5.19 4.5.20
pnet 0.34.0 0.35.0
pnet_macros_support 0.34.0 0.35.0
ratatui 0.28.1 0.29.0
thiserror 1.0.64 1.0.66
tokio 1.40.0 1.41.0
regex 1.11.0 1.11.1
insta 1.40.0 1.41.1
pnet_base 0.34.0 0.35.0
clap_complete 4.5.32 4.5.36
clap_mangen 0.2.23 0.2.24
http_req 0.12.0 0.13.0

Updates anyhow from 1.0.89 to 1.0.91

Release notes

Sourced from anyhow's releases.

1.0.91

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#388)

1.0.90

  • Documentation improvements
Commits
  • 6c52daa Release 1.0.91
  • 4986853 Merge pull request #388 from dtolnay/outdir
  • f130b76 Clean up dep-info files from OUT_DIR
  • a0b868a Release 1.0.90
  • 0f74169 Improve rendering of inline code in macros documentation
  • 8ce4560 Ignore needless_lifetimes clippy lint
  • be64707 Resolve used_underscore_items pedantic clippy lint
  • See full diff in compare view

Updates clap from 4.5.19 to 4.5.20

Changelog

Sourced from clap's changelog.

[4.5.20] - 2024-10-08

Features

  • (unstable) Add CommandExt
Commits
  • 5034cab chore: Release
  • b5b690c docs: Update changelog
  • abba196 Merge pull request #5688 from epage/rename
  • 6ddd5d4 fix(complete)!: Rename ArgValueCompleter to ArgValueCandidates
  • 71c5e27 fix(complete)!: Rename CustomCompleter to ValueCandidates
  • See full diff in compare view

Updates pnet from 0.34.0 to 0.35.0

Release notes

Sourced from pnet's releases.

v0.35.0

What's Changed

New Contributors

Full Changelog: libpnet/libpnet@v0.34.0...v0.35.0

Commits
  • 97ece70 Release v0.35.0
  • 49c8c68 Merge pull request #681 from ionosnetworks/feat/linux-poll-api
  • 07526a7 Merge pull request #678 from tomDev5/dns
  • b319ca2 fixed dns code
  • a3a46e6 removed BooleanField for u1
  • 7086ed2 dns layer in pnet
  • 14a01ff Merge pull request #584 from Martichou/raw_socket
  • bd4c8b0 datalink(linux): add feature to pass the fd (socket) to ::channel()
  • 28e9de4 Merge pull request #689 from mrmonday/ecn-unix-only
  • 01eee25 Expose set_ecn on unix only.
  • Additional commits viewable in compare view

Updates pnet_macros_support from 0.34.0 to 0.35.0

Release notes

Sourced from pnet_macros_support's releases.

v0.35.0

What's Changed

New Contributors

Full Changelog: libpnet/libpnet@v0.34.0...v0.35.0

Commits
  • 97ece70 Release v0.35.0
  • 49c8c68 Merge pull request #681 from ionosnetworks/feat/linux-poll-api
  • 07526a7 Merge pull request #678 from tomDev5/dns
  • b319ca2 fixed dns code
  • a3a46e6 removed BooleanField for u1
  • 7086ed2 dns layer in pnet
  • 14a01ff Merge pull request #584 from Martichou/raw_socket
  • bd4c8b0 datalink(linux): add feature to pass the fd (socket) to ::channel()
  • 28e9de4 Merge pull request #689 from mrmonday/ecn-unix-only
  • 01eee25 Expose set_ecn on unix only.
  • Additional commits viewable in compare view

Updates ratatui from 0.28.1 to 0.29.0

Release notes

Sourced from ratatui's releases.

v0.29.0

v0.29.0 - 2024-10-21

"Food will come, Remy. Food always comes to those who love to cook." – Gusteau

We are excited to announce the new version of ratatui - a Rust library that's all about cooking up TUIs 👨‍🍳🐀

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

⚠️ List of breaking changes can be found here.

Features

  • 3a43274 (color) Add hsluv support by @​du-ob in #1333

  • 4c4851c (example) Add drawing feature to the canvas example by @​orhun in #1429

    rec_20241018T235208

    fun fact: I had to do 35 pushups for this...


  • e5a7609 (line) Impl From for Line by @​joshka in #1373 [breaking]

    BREAKING-CHANGES:Line now implements From<Cow<str>

    As this adds an extra conversion, ambiguous inferred values may no longer compile.

    // given:
    struct Foo { ... }
    impl From<Foo> for String { ... }
    impl From<Foo> for Cow<str> { ... }
    let foo = Foo { ... };
    let line = Line::from(foo); // now fails due to ambiguous type inference
    // replace with
    let line = Line::from(String::from(foo));

    Fixes:ratatui/ratatui#1367


... (truncated)

Changelog

Sourced from ratatui's changelog.

v0.29.0 - 2024-10-21

Features

  • 3a43274 (color) Add hsluv support by @​du-ob in #1333

  • 4c4851c (example) Add drawing feature to the canvas example by @​orhun in #1429

    rec_20241018T235208

    fun fact: I had to do 35 pushups for this...


  • e5a7609 (line) Impl From for Line by @​joshka in #1373 [breaking]

    BREAKING-CHANGES:Line now implements From<Cow<str>

    As this adds an extra conversion, ambiguous inferred values may no longer compile.

    // given:
    struct Foo { ... }
    impl From<Foo> for String { ... }
    impl From<Foo> for Cow<str> { ... }
    let foo = Foo { ... };
    let line = Line::from(foo); // now fails due to ambiguous type inference
    // replace with
    let line = Line::from(String::from(foo));

    Fixes:ratatui/ratatui#1367


  • 2805ddd (logo) Add a Ratatui logo widget by @​joshka in #1307

    This is a simple logo widget that can be used to render the Ratatui logo in the terminal. It is used in the examples/ratatui-logo.rs example, and may be used in your applications' help or about screens.

    use ratatui::{Frame, widgets::RatatuiLogo};
    fn draw(frame: &mut Frame) {
    frame.render_widget(RatatuiLogo::tiny(), frame.area());

... (truncated)

Commits
  • 2873217 chore(release): prepare for 0.29.0 (#1444)
  • 6515097 chore(cargo): check in Cargo.lock (#1434)
  • 4c4851c feat(example): add drawing feature to the canvas example (#1429)
  • 4f5503d fix(color)!: hsl and hsluv are now clamped before conversion (#1436)
  • 611086e fix: sparkline docs / doc tests (#1437)
  • 514d273 fix(terminal): use the latest, resized area when clearing (#1427)
  • 60cc15b feat!: add support for empty bar style to Sparkline (#1326)
  • a52ee82 fix(text): truncate based on alignment (#1432)
  • 381ec75 docs(readme): reduce the length (#1431)
  • f6f7794 chore: remove leftover prelude refs / glob imports from example code (#1430)
  • Additional commits viewable in compare view

Updates thiserror from 1.0.64 to 1.0.66

Release notes

Sourced from thiserror's releases.

1.0.66

  • Improve compile error on malformed format attribute (#327)

1.0.65

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#325)
Commits
  • d1a8254 Release 1.0.66
  • e2e9da3 Merge pull request #328 from dtolnay/peekend
  • 3d79a90 Use peek2(End) instead of fork/advance_to
  • a9a6c98 Merge pull request #329 from dtolnay/up
  • 51a5e4c Raise minimum compiler for test suite to rust 1.70
  • 8fb92ff Resolve uninlined_format_args pedantic clippy lint in build script
  • 0e2bef9 Raise required compiler to rust 1.61
  • bb30f2e Merge pull request #327 from dtolnay/literal
  • 5d3edf9 Improve error on malformed format attribute
  • 003a89f Merge pull request #326 from dtolnay/sealed
  • Additional commits viewable in compare view

Updates tokio from 1.40.0 to 1.41.0

Release notes

Sourced from tokio's releases.

Tokio v1.41.0

1.41.0 (Oct 22th, 2024)

Added

  • metrics: stabilize global_queue_depth (#6854, #6918)
  • net: add conversions for unix SocketAddr (#6868)
  • sync: add watch::Sender::sender_count (#6836)
  • sync: add mpsc::Receiver::blocking_recv_many (#6867)
  • task: stabilize Id apis (#6793, #6891)

Added (unstable)

  • metrics: add H2 Histogram option to improve histogram granularity (#6897)
  • metrics: rename some histogram apis (#6924)
  • runtime: add LocalRuntime (#6808)

Changed

  • runtime: box futures larger than 16k on release mode (#6826)
  • sync: add #[must_use] to Notified (#6828)
  • sync: make watch cooperative (#6846)
  • sync: make broadcast::Receiver cooperative (#6870)
  • task: add task size to tracing instrumentation (#6881)
  • wasm: enable cfg_fs for wasi target (#6822)

Fixed

  • net: fix regression of abstract socket path in unix socket (#6838)

Documented

  • io: recommend OwnedFd with AsyncFd (#6821)
  • io: document cancel safety of AsyncFd methods (#6890)
  • macros: render more comprehensible documentation for join and try_join (#6814, #6841)
  • net: fix swapped examples for TcpSocket::set_nodelay and TcpSocket::nodelay (#6840)
  • sync: document runtime compatibility (#6833)

#6793: tokio-rs/tokio#6793 #6808: tokio-rs/tokio#6808 #6810: tokio-rs/tokio#6810 #6814: tokio-rs/tokio#6814 #6821: tokio-rs/tokio#6821 #6822: tokio-rs/tokio#6822 #6826: tokio-rs/tokio#6826 #6828: tokio-rs/tokio#6828 #6833: tokio-rs/tokio#6833 #6836: tokio-rs/tokio#6836 #6838: tokio-rs/tokio#6838 #6840: tokio-rs/tokio#6840

... (truncated)

Commits
  • 01e04da chore: prepare Tokio v1.41.0 (#6917)
  • 92ccade runtime: fix stability feature flags for docs (#6909)
  • fbfeb9a metrics: rename *_poll_count_* to *_poll_time_* (#6924)
  • da745ff metrics: add H2 Histogram option to improve histogram granularity (#6897)
  • ce1c74f metrics: fix deadlock in injection_queue_depth_multi_thread test (#6916)
  • 28c9a14 metrics: rename injection_queue_depth to global_queue_depth (#6918)
  • 32e0b43 ci: freeze FreeBSD and wasm-unknown-unknown on rustc 1.81 (#6911)
  • 1656d8e sync: add mpsc::Receiver::blocking_recv_many (#6867)
  • c9e998e ci: print the correct sort order of the dictionary on failure (#6905)
  • 512e9de rt: add LocalRuntime (#6808)
  • Additional commits viewable in compare view

Updates regex from 1.11.0 to 1.11.1

Changelog

Sourced from regex's changelog.

1.11.1 (2024-10-24)

This is a new patch release of regex that fixes compilation on nightly Rust when the unstable pattern crate feature is enabled. Users on nightly Rust without this feature enabled are unaffected.

Bug fixes:

Commits

Updates insta from 1.40.0 to 1.41.1

Release notes

Sourced from insta's releases.

1.41.1

Release Notes

  • Re-release of 1.41.0 to generate release artifacts correctly.

Install cargo-insta 1.41.1

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.41.1/cargo-insta-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/mitsuhiko/insta/releases/download/1.41.1/cargo-insta-installer.ps1 | iex"

Download cargo-insta 1.41.1

File Platform Checksum
cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum
cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum
cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum
cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum

1.41.0

  • Experimental support for binary snapshots. #610 (Florian Plattner)

  • --force-update-snapshots now causes cargo-insta to write every snapshot, regardless of whether snapshots fully match, and now implies --accept. This allows for --force-update-snapshots to update inline snapshots' delimiters and indentation.

    For the previous behavior of --force-update-snapshots, which limited writes to snapshots which didn't fully match, use --require-full-match. The main difference between --require-full-match and the existing behavior of --force-update-snapshots is a non-zero exit code on any snapshots which don't fully match.

    Like the previous behavior or --force-update-snapshots, --require-full-match doesn't track inline snapshots' delimiters or indentation, so can't update if those don't match. #644

  • Inline snapshots only use # characters as delimiters when required. #603

  • Warnings for undiscovered snapshots are more robust, and include files with custom snapshot extensions. #637

  • Insta runs correctly on packages which reference rust files in a parent path. #626

  • Warnings are printed when any snapshot uses a legacy format. #599

  • cargo insta --version now prints a version. #665

... (truncated)

Changelog

Sourced from insta's changelog.

1.41.1

  • Re-release of 1.41.1 to generate release artifacts correctly.

1.41.0

  • Experimental support for binary snapshots. #610 (Florian Plattner)

  • --force-update-snapshots now causes cargo-insta to write every snapshot, regardless of whether snapshots fully match, and now implies --accept. This allows for --force-update-snapshots to update inline snapshots' delimiters and indentation.

    For the previous behavior of --force-update-snapshots, which limited writes to snapshots which didn't fully match, use --require-full-match. The main difference between --require-full-match and the existing behavior of --force-update-snapshots is a non-zero exit code on any snapshots which don't fully match.

    Like the previous behavior of --force-update-snapshots, --require-full-match doesn't track inline snapshots' delimiters or indentation, so can't update if those don't match. #644

  • Inline snapshots only use # characters as delimiters when required. #603

  • Warnings for undiscovered snapshots are more robust, and include files with custom snapshot extensions. #637

  • Insta runs correctly on packages which reference rust files in a parent path. #626

  • Warnings are printed when any snapshot uses a legacy format. #599

  • cargo insta --version now prints a version. #665

  • insta now internally uses INSTA_UPDATE=force rather than INSTA_FORCE_UPDATE=1. (This doesn't affect users of cargo-insta, which handles this internally.) #482

  • cargo-insta's integration tests continue to grow over the past couple of versions, and now offer coverage of most of cargo-insta's interface.

Commits

Updates pnet_base from 0.34.0 to 0.35.0

Release notes

Sourced from pnet_base's releases.

v0.35.0

What's Changed

New Contributors

Full Changelog: libpnet/libpnet@v0.34.0...v0.35.0

Commits
  • 97ece70 Release v0.35.0
  • 49c8c68 Merge pull request #681 from ionosnetworks/feat/linux-poll-api
  • 07526a7 Merge pull request #678 from tomDev5/dns
  • b319ca2 fixed dns code
  • a3a46e6 removed BooleanField for u1
  • 7086ed2 dns layer in pnet
  • 14a01ff Merge pull request #584 from Martichou/raw_socket
  • bd4c8b0 datalink(linux): add feature to pass the fd (socket) to ::channel()
  • 28e9de4 Merge pull request #689 from mrmonday/ecn-unix-only
  • 01eee25 Expose set_ecn on unix only.
  • Additional commits viewable in compare view

Updates clap_complete from 4.5.32 to 4.5.36

Commits
  • 7a6475e chore: Release
  • 0266c41 docs: Update changelog
  • 6ec0b43 Merge pull request #5791 from okapia/zsh-default-fallback
  • e40168c fix(zsh): Use _default as zsh completion fallback
  • 55a18f5 chore: Release
  • 3b05635 fix(complete): Ensure new enough clap is used
  • 5d2cdac chore: Release
  • f1c10eb docs: Update changelog
  • a4d1a7f chore(ci): Take a break from template updates
  • e95ed39 Merge pull request #5775 from vivienm/master
  • Additional commits viewable in compare view

Updates clap_mangen from 0.2.23 to 0.2.24

Commits
  • 61f5ee5 chore: Release
  • 3e65384 docs: Update changelog
  • fca8f73 Merge pull request #5706 from shannmu/external_subcommand
  • fc82a3e feat(complete): Support to complete custom external subcommand
  • 6a09122 test(complete): Add test for external subcommand
  • d2874a5 Merge pull request #5766 from epage/completer
  • a767a97 feat: Add CommandExt support
  • 32853d7 refactor(builder): Make Ext code similar for Arg, Command
  • e9ce1be refactor(builder): Rename AppTag to AppExt
  • f89afeb refactor(complete): Put most general completer first
  • Additional commits viewable in compare view

Updates http_req from 0.12.0 to 0.13.0

Release notes

Sourced from http_req's releases.

v0.13.0

What's new

  • Default headers now include User-Agent
  • Update RedirectPolicy to allow creating Custom policies, which utilize uri
  • Support for Authentication (Basic and Bearer)
  • New dependencies
    • base64 ^0.22.1
    • zeroize ^1.8.1

Breaking changes

  • Content-Length header is automatically added, when body is set for the request as per #41 by @​cjqpker, also mentioned in

Bumps the dependencies group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.89` | `1.0.91` |
| [clap](https://github.com/clap-rs/clap) | `4.5.19` | `4.5.20` |
| [pnet](https://github.com/libpnet/libpnet) | `0.34.0` | `0.35.0` |
| [pnet_macros_support](https://github.com/libpnet/libpnet) | `0.34.0` | `0.35.0` |
| [ratatui](https://github.com/ratatui/ratatui) | `0.28.1` | `0.29.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.64` | `1.0.66` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.40.0` | `1.41.0` |
| [regex](https://github.com/rust-lang/regex) | `1.11.0` | `1.11.1` |
| [insta](https://github.com/mitsuhiko/insta) | `1.40.0` | `1.41.1` |
| [pnet_base](https://github.com/libpnet/libpnet) | `0.34.0` | `0.35.0` |
| [clap_complete](https://github.com/clap-rs/clap) | `4.5.32` | `4.5.36` |
| [clap_mangen](https://github.com/clap-rs/clap) | `0.2.23` | `0.2.24` |
| [http_req](https://github.com/jayjamesjay/http_req) | `0.12.0` | `0.13.0` |


Updates `anyhow` from 1.0.89 to 1.0.91
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.89...1.0.91)

Updates `clap` from 4.5.19 to 4.5.20
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.19...clap_complete-v4.5.20)

Updates `pnet` from 0.34.0 to 0.35.0
- [Release notes](https://github.com/libpnet/libpnet/releases)
- [Commits](libpnet/libpnet@v0.34.0...v0.35.0)

Updates `pnet_macros_support` from 0.34.0 to 0.35.0
- [Release notes](https://github.com/libpnet/libpnet/releases)
- [Commits](libpnet/libpnet@v0.34.0...v0.35.0)

Updates `ratatui` from 0.28.1 to 0.29.0
- [Release notes](https://github.com/ratatui/ratatui/releases)
- [Changelog](https://github.com/ratatui/ratatui/blob/main/CHANGELOG.md)
- [Commits](ratatui/ratatui@v0.28.1...v0.29.0)

Updates `thiserror` from 1.0.64 to 1.0.66
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.64...1.0.66)

Updates `tokio` from 1.40.0 to 1.41.0
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.40.0...tokio-1.41.0)

Updates `regex` from 1.11.0 to 1.11.1
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.11.0...1.11.1)

Updates `insta` from 1.40.0 to 1.41.1
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.40.0...1.41.1)

Updates `pnet_base` from 0.34.0 to 0.35.0
- [Release notes](https://github.com/libpnet/libpnet/releases)
- [Commits](libpnet/libpnet@v0.34.0...v0.35.0)

Updates `clap_complete` from 4.5.32 to 4.5.36
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.32...clap_complete-v4.5.36)

Updates `clap_mangen` from 0.2.23 to 0.2.24
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_mangen-v0.2.23...clap_mangen-v0.2.24)

Updates `http_req` from 0.12.0 to 0.13.0
- [Release notes](https://github.com/jayjamesjay/http_req/releases)
- [Commits](jayjamesjay/http_req@v0.12.0...v0.13.0)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pnet
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pnet_macros_support
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ratatui
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: insta
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pnet_base
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: clap_complete
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: clap_mangen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: http_req
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Nov 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants