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

build(deps): bump the cargo group across 1 directory with 12 updates #27

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 Oct 8, 2024

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

Package From To
futures 0.3.30 0.3.31
libc 0.2.155 0.2.159
serde 1.0.204 1.0.210
serde_json 1.0.120 1.0.128
superblock 0aaece6 77c30ad
thiserror 1.0.61 1.0.64
tokio 1.38.0 1.40.0
tokio-util 0.7.11 0.7.12
tokio-stream 0.1.15 0.1.16
gpt 3.1.0 4.0.0
tui-textarea 0.5.0 0.5.3

Updates futures from 0.3.30 to 0.3.31

Release notes

Sourced from futures's releases.

0.3.31

  • Fix use after free of task in FuturesUnordered when dropped future panics (#2886)
  • Fix soundness bug in task::waker_ref (#2830) This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884)
  • Fix parsing issue in select!/select_biased! (#2832) This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#2875)
  • Add future::AlwaysReady (#2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#2848)
Changelog

Sourced from futures's changelog.

0.3.31 - 2024-10-05

  • Fix use after free of task in FuturesUnordered when dropped future panics (#2886)
  • Fix soundness bug in task::waker_ref (#2830) This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884)
  • Fix parsing issue in select!/select_biased! (#2832) This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#2875)
  • Add future::AlwaysReady (#2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#2848)
Commits
  • 1e05281 Release 0.3.31
  • 8a8b085 Fix clippy::uninit_vec warning
  • f3fb74d Document how BoxFutures / BoxStreams are often made (#2887)
  • f00e7af Fix use after free of task in FuturesUnordered when dropped future panics (#2...
  • 33c46b3 ci: Work around sanitizer issue on latest Linux kernel
  • 7bf5a72 Fix issues with AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884)
  • 87afaf3 Use #[inline(always)] on clone_arc_raw (#2865)
  • 549b90b Add accessors for the inner of stream::Iter (#2875)
  • 07b004a Add missing symbols (#2883)
  • 86dc069 Various fixes too make the CI green (#2885)
  • Additional commits viewable in compare view

Updates libc from 0.2.155 to 0.2.159

Release notes

Sourced from libc's releases.

0.2.159

Added

Fixed

Changed

0.2.158

Fixed

0.2.157

Added

Fixed

... (truncated)

Changelog

Sourced from libc's changelog.

0.2.159 - 2024-09-24

Added

Fixed

Changed

0.2.158 - 2024-08-19

Other

0.2.157 - 2024-08-17

Added

... (truncated)

Commits
  • 7373a1a chore: release (#3862)
  • 48668be Merge pull request #3931 from tgross35/backport-remove-tmp-file
  • 28bb64b Remove temporary file that was added by accident
  • a515d07 Merge pull request #3904 from tgross35/backport-buildrs-fix
  • abcb8f8 Simplify the RUSTC_WRAPPER check
  • 5078335 Fix rustc version when clippy-driver is used
  • 57a7d46 Merge pull request #3902 from tgross35/backport-horizon-network
  • a3e8869 Revise network definitions for HorizonOS
  • fdd3a26 Merge pull request #3900 from tgross35/espid-cherry-pick
  • 35060e8 Merge pull request #3901 from tgross35/backport-epoll_pwait2
  • Additional commits viewable in compare view

Updates serde from 1.0.204 to 1.0.210

Release notes

Sourced from serde's releases.

v1.0.210

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#2818)

v1.0.209

  • Fix deserialization of empty structs and empty tuples inside of untagged enums (#2805, thanks @​Mingun)

v1.0.208

  • Support serializing and deserializing unit structs in a flatten field (#2802, thanks @​jonhoo)

v1.0.207

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#2795, thanks @​Mingun)

v1.0.206

  • Improve support for flatten attribute inside of enums (#2567, thanks @​Mingun)

v1.0.205

  • Use serialize_entry instead of serialize_key + serialize_value when serialize flattened newtype enum variants (#2785, thanks @​Mingun)
  • Avoid triggering a collection_is_never_read lint in the deserialization of enums containing flattened fields (#2791)
Commits
  • 89c4b02 Release 1.0.210
  • eeb8e44 Merge pull request #2818 from dtolnay/coreerror
  • 785c2d9 Stabilize no-std StdError trait
  • d549f04 Reformat parse_ip_impl definition and calls
  • 4c0dd63 Delete attr support from core::net deserialization macros
  • 26fb134 Relocate cfg attrs out of parse_ip_impl and parse_socket_impl
  • 07e614b Merge pull request #2817 from dtolnay/corenet
  • b1f899f Delete doc(cfg) attribute from impls that are supported in no-std
  • b4f860e Merge pull request #2816 from MathiasKoch/chore/core-net
  • d940fe1 Reuse existing Buf wrapper as replacement for std::io::Write
  • Additional commits viewable in compare view

Updates serde_json from 1.0.120 to 1.0.128

Release notes

Sourced from serde_json's releases.

1.0.128

  • Support serializing maps containing 128-bit integer keys to serde_json::Value (#1188, thanks @​Mrreadiness)

1.0.127

1.0.126

  • Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (#1182, thanks @​CryZe)

1.0.125

  • Speed up \uXXXX parsing and improve handling of unpaired surrogates when deserializing to bytes (#1172, #1175, thanks @​purplesyringa)

v1.0.124

v1.0.123

v1.0.122

  • Support using json! in no-std crates (#1166)

v1.0.121

Commits
  • d96b1d9 Release 1.0.128
  • 599228d Merge pull request #1188 from Mrreadiness/feat/add-hashmap-key-128-serializer
  • 5416cee feat: add support for 128 bit HashMap key serialization
  • 27a4ca9 Upload CI Cargo.lock for reproducing failures
  • 5ebf65c Release 1.0.127
  • f287a3b Merge pull request 1179 from GREsau/patch-1
  • ec980b0 Release 1.0.126
  • e6282b0 Merge pull request #1184 from serde-rs/fastarithmetic
  • ffc4a43 Improve cfg names for fast arithmetic
  • 4b1048d Merge pull request #1183 from serde-rs/arithmetic
  • Additional commits viewable in compare view

Updates superblock from 0aaece6 to 77c30ad

Commits
  • 77c30ad Merge pull request #21 from jplatte/ci-cache
  • 95c91b3 kill funding.yml
  • ba024b2 ci: Use more sophisticated cache action
  • 59a8f12 Revert "blsforme/manager: Use more secure vfat mount options"
  • aaa9a0a blsforme/manager: Use more secure vfat mount options
  • 4aec928 manager: Default to None xbootldr/esp mountpoint if no devices can be found
  • 4a2171a manager: Force rw boot parameter
  • See full diff in compare view

Updates topology from 0aaece6 to 77c30ad

Commits
  • 77c30ad Merge pull request #21 from jplatte/ci-cache
  • 95c91b3 kill funding.yml
  • ba024b2 ci: Use more sophisticated cache action
  • 59a8f12 Revert "blsforme/manager: Use more secure vfat mount options"
  • aaa9a0a blsforme/manager: Use more secure vfat mount options
  • 4aec928 manager: Default to None xbootldr/esp mountpoint if no devices can be found
  • 4a2171a manager: Force rw boot parameter
  • See full diff in compare view

Updates thiserror from 1.0.61 to 1.0.64

Release notes

Sourced from thiserror's releases.

1.0.64

  • Exclude derived impls from coverage instrumentation (#322, thanks @​oxalica)

1.0.63

  • Documentation improvements

1.0.62

  • Support referring to nested tuple struct fields inside #[error("…", …)] attribute (#309)
Commits
  • 84484bc Release 1.0.64
  • 023f036 Merge pull request #322 from oxalica/feat/mark-auto-derived
  • ae1f47e Mark #[automatically_derived] for generated impls
  • ab5b5e3 Upload CI Cargo.lock for reproducing failures
  • 00b3c14 Work around new dead code warning in test
  • 915c75e Release 1.0.63
  • 3d5ec25 Merge pull request #312 from dtolnay/backtracedoc
  • de8a1e5 Update documentation of #[from] and #[backtrace] attributes
  • 0bf6e3d Release 1.0.62
  • 4977932 Merge pull request #310 from dtolnay/nestedtuple
  • Additional commits viewable in compare view

Updates tokio from 1.38.0 to 1.40.0

Release notes

Sourced from tokio's releases.

Tokio v1.40.0

1.40.0 (August 30th, 2024)

Added

  • io: add util::SimplexStream (#6589)
  • process: stabilize Command::process_group (#6731)
  • sync: add {TrySendError,SendTimeoutError}::into_inner (#6755)
  • task: add JoinSet::join_all (#6784)

Added (unstable)

  • runtime: add Builder::{on_task_spawn, on_task_terminate} (#6742)

Changed

  • io: use vectored io for write_all_buf when possible (#6724)
  • runtime: prevent niche-optimization to avoid triggering miri (#6744)
  • sync: mark mpsc types as UnwindSafe (#6783)
  • sync,time: make Sleep and BatchSemaphore instrumentation explicit roots (#6727)
  • task: use NonZeroU64 for task::Id (#6733)
  • task: include panic message when printing JoinError (#6753)
  • task: add #[must_use] to JoinHandle::abort_handle (#6762)
  • time: eliminate timer wheel allocations (#6779)

Documented

  • docs: clarify that [build] section doesn't go in Cargo.toml (#6728)
  • io: clarify zero remaining capacity case (#6790)
  • macros: improve documentation for select! (#6774)
  • sync: document mpsc channel allocation behavior (#6773)

#6589: tokio-rs/tokio#6589 #6724: tokio-rs/tokio#6724 #6727: tokio-rs/tokio#6727 #6728: tokio-rs/tokio#6728 #6731: tokio-rs/tokio#6731 #6733: tokio-rs/tokio#6733 #6742: tokio-rs/tokio#6742 #6744: tokio-rs/tokio#6744 #6753: tokio-rs/tokio#6753 #6755: tokio-rs/tokio#6755 #6762: tokio-rs/tokio#6762 #6773: tokio-rs/tokio#6773 #6774: tokio-rs/tokio#6774 #6779: tokio-rs/tokio#6779 #6783: tokio-rs/tokio#6783 #6784: tokio-rs/tokio#6784 #6790: tokio-rs/tokio#6790

... (truncated)

Commits

Updates tokio-util from 0.7.11 to 0.7.12

Commits

Updates tokio-stream from 0.1.15 to 0.1.16

Commits

Updates gpt from 3.1.0 to 4.0.0

Release notes

Sourced from gpt's releases.

v4.0.0

Behaviour changes

  • Opening a GptDisk now succeeds even if one header is invalid (use the only_valid_headers config flag to get the old behaviour back)

Changes

  • Type::from_str now is case insensitive, Thanks @​IronBatman2715
  • add GptDisk::calculate_alignment allowing to calculate the sector alignment, Thanks @​gaochuntie
  • add GptDisk::add_partition_at, Thanks @​gaochuntie
  • Bump MSRV to 1.65
  • implement Clone for GptDisk
  • relax trait bounds on some functions of GptDisk
  • remove Partition::size and replace it with sectors_len which returns the correct number of sectors, Thanks @​sjoerdsimons
  • GptDisk::{primary_header, backup_header, try_header} now return an error instead of just Option
  • Remove initialized state & configuration
  • add the option to allow the partition count to be changed
  • add the option to only open a disk if both headers are valid
  • add the option to keep the backup partition readonly
  • split GptDisk::remove_partition into two functions remove_partition and remove_partition_by_guid
  • add GptDisk::header function which allows to get the current header (either primary or backup)
  • add GptDisk::take_partitions
  • remove GptDisk::update_partitions_safe and replace it with a config option readonly_backup
  • remove GptDisk::update_partitions_embedded and replace it with the config option change_partition_count
  • add GptDisk::device_ref
  • add GptDisk::device_mut
  • crc32 are now stored in the header after it has been written instead of always being zeros
  • Add DragonFlyBSD as partition and OS type, Thanks @​phcoder
  • GptDisk now accepts a generic DiskDevice
  • add ChromeOS RWFW partition type, Thanks @​phcoder
  • improve error reporting, returning HeaderError or the new GptError
  • add HeaderBuilder to simplify creating a header (replaces Header::compute_new)
  • add GptDisk::take_device
  • Support custom partition GUIDs
  • logging is now optional use the log or tracing feature to use the appropriate logging crate

v4.0.0-rc.2 (2024-04-04)

Changes

  • remove Partition::size and replace it with sectors_len which returns the correct number of sectors
  • GptDisk::{primary_header, backup_header, try_header} now return an error instead of just Option

v4.0.0-rc.1 (2023-11-18)

Behaviour changes

... (truncated)

Changelog

Sourced from gpt's changelog.

v4.0.0 (2024-09-13)

Behaviour changes

  • Opening a GptDisk now succeeds even if one header is invalid (use the only_valid_headers config flag to get the old behaviour back)

Changes

  • Type::from_str now is case insensitive, Thanks @​IronBatman2715
  • add GptDisk::calculate_alignment allowing to calculate the sector alignment, Thanks @​gaochuntie
  • add GptDisk::add_partition_at, Thanks @​gaochuntie
  • Bump MSRV to 1.65
  • implement Clone for GptDisk
  • relax trait bounds on some functions of GptDisk
  • remove Partition::size and replace it with sectors_len which returns the correct number of sectors, Thanks @​sjoerdsimons
  • GptDisk::{primary_header, backup_header, try_header} now return an error instead of just Option
  • Remove initialized state & configuration
  • add the option to allow the partition count to be changed
  • add the option to only open a disk if both headers are valid
  • add the option to keep the backup partition readonly
  • split GptDisk::remove_partition into two functions remove_partition and remove_partition_by_guid
  • add GptDisk::header function which allows to get the current header (either primary or backup)
  • add GptDisk::take_partitions
  • remove GptDisk::update_partitions_safe and replace it with a config option readonly_backup
  • remove GptDisk::update_partitions_embedded and replace it with the config option change_partition_count
  • add GptDisk::device_ref
  • add GptDisk::device_mut
  • crc32 are now stored in the header after it has been written instead of always being zeros
  • Add DragonFlyBSD as partition and OS type, Thanks @​phcoder
  • GptDisk now accepts a generic DiskDevice
  • add ChromeOS RWFW partition type, Thanks @​phcoder
  • improve error reporting, returning HeaderError or the new GptError
  • add HeaderBuilder to simplify creating a header (replaces Header::compute_new)
  • add GptDisk::take_device
  • Support custom partition GUIDs
  • logging is now optional use the log or tracing feature to use the appropriate logging crate
Commits
  • 39f57e5 Publish v4.0.0
  • f393c84 remove fixtures tests from being published to crates io Closes #105
  • c07c561 simplify Type::from_name
  • 2341e2c Make partition_types::Type::FromStr case-insensitive for guid
  • 6e98a3f Calculate existed alignment (#103)
  • a346e9f add GptDisk::add_partition_at (#99)
  • 8b3a303 remove unused "cargo-clippy" feature
  • a7c4617 better to use the repository field
  • bf23b74 Publish v4.0.0-rc.3
  • 8929bed bump msrv to 1.65
  • Additional commits viewable in compare view

Updates tui-textarea from 0.5.0 to 0.5.3

Release notes

Sourced from tui-textarea's releases.

v0.5.3

  • &TextArea now implements Widget trait. (#78)
    • Now the reference can be passed to ratatui::terminal::Frame::render_widget method call directly.
      // v0.5.2 or earlier
      f.render_widget(textarea.widget(), rect);
      // v0.5.3 or later
      f.render_widget(&textarea, rect);

    • This means that TextArea::widget method is no longer necessary. To maintain the compatibility the method is not removed but using it starts to report a deprecation warning from v0.5.3.
  • Fix a cursor can leave the viewport on horizontal scroll when line number is displayed. (#77)
  • Support some key combinations added at termion v4 for termion feature. (#68)
    • termion::event::Key::CtrlLeft
    • termion::event::Key::CtrlRight
    • termion::event::Key::CtrlUp
    • termion::event::Key::CtrlDown
    • termion::event::Key::CtrlHome
    • termion::event::Key::CtrlEnd
    • termion::event::Key::AltLeft
    • termion::event::Key::AltRight
    • termion::event::Key::AltUp
    • termion::event::Key::AltDown
    • termion::event::Key::ShiftLeft
    • termion::event::Key::ShiftRight
    • termion::event::Key::ShiftUp
    • termion::event::Key::ShiftDown
  • Fix the border color is not applied in single_line example. (#79, thanks @​fmorroni)
  • Improve vim example's Vim emulation.
    • Fix the range of text selection on e mapping in operator-pending mode. (#76)
    • Fix the text selection on y, d, c mappings in visual mode is not inclusive.

v0.5.2

  • Do not hide a cursor when a placeholder text is printed. (#73, thanks @​kyu08)
    • demo
  • Add CursorMove::WordEnd which moves a cursor to the end of the next word inclusively. (#75, thanks @​achristmascarl)
    • The behavior is similar to e mapping of Vim in normal mode. vim example implements the mapping for demonstration.

v0.5.1

  • Add serde optional feature. When it is enabled, some types support the serialization/deserialization with serde crate. See the document for more details. (#62, thanks @​cestef)
    use tui_textarea::Input;
    let json = r#"
    {
    "key": { "Char": "a" },
    "ctrl": true,
    "alt": false,
    "shift": true
    }

... (truncated)

Changelog

Sourced from tui-textarea's changelog.

v0.5.3 - 03 Aug 2024

  • &TextArea now implements Widget trait. (#78)
    • Now the reference can be passed to ratatui::terminal::Frame::render_widget method call directly.
      // v0.5.2 or earlier
      f.render_widget(textarea.widget(), rect);
      // v0.5.3 or later
      f.render_widget(&textarea, rect);

    • This means that TextArea::widget method is no longer necessary. To maintain the compatibility the method is not removed but using it starts to report a deprecation warning from v0.5.3.
  • Fix a cursor can leave the viewport on horizontal scroll when line number is displayed. (#77)
  • Support some key combinations added at termion v4 for termion feature. (#68)
    • termion::event::Key::CtrlLeft
    • termion::event::Key::CtrlRight
    • termion::event::Key::CtrlUp
    • termion::event::Key::CtrlDown
    • termion::event::Key::CtrlHome
    • termion::event::Key::CtrlEnd
    • termion::event::Key::AltLeft
    • termion::event::Key::AltRight
    • termion::event::Key::AltUp
    • termion::event::Key::AltDown
    • termion::event::Key::ShiftLeft
    • termion::event::Key::ShiftRight
    • termion::event::Key::ShiftUp
    • termion::event::Key::ShiftDown
  • Fix the border color is not applied in single_line example. (#79, thanks @​fmorroni)
  • Improve vim example's Vim emulation.
    • Fix the range of text selection on e mapping in operator-pending mode. (#76)
    • Fix the text selection on y, d, c mappings in visual mode is not inclusive.

[Changes][v0.5.3]

v0.5.2 - 01 Aug 2024

  • Do not hide a cursor when a placeholder text is printed. (#73, thanks @​kyu08)
    • demo
  • Add CursorMove::WordEnd which moves a cursor to the end of the next word inclusively. (#75, thanks @​achristmascarl)
    • The behavior is similar to e ma...

      Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.30` | `0.3.31` |
| [libc](https://github.com/rust-lang/libc) | `0.2.155` | `0.2.159` |
| [serde](https://github.com/serde-rs/serde) | `1.0.204` | `1.0.210` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.120` | `1.0.128` |
| [superblock](https://github.com/serpent-os/blsforme) | ``0aaece6`` | ``77c30ad`` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.61` | `1.0.64` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.38.0` | `1.40.0` |
| [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.11` | `0.7.12` |
| [tokio-stream](https://github.com/tokio-rs/tokio) | `0.1.15` | `0.1.16` |
| [gpt](https://github.com/Quyzi/gpt) | `3.1.0` | `4.0.0` |
| [tui-textarea](https://github.com/rhysd/tui-textarea) | `0.5.0` | `0.5.3` |



Updates `futures` from 0.3.30 to 0.3.31
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.30...0.3.31)

Updates `libc` from 0.2.155 to 0.2.159
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.155...0.2.159)

Updates `serde` from 1.0.204 to 1.0.210
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.204...v1.0.210)

Updates `serde_json` from 1.0.120 to 1.0.128
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.120...1.0.128)

Updates `superblock` from `0aaece6` to `77c30ad`
- [Commits](serpent-os/blsforme@0aaece6...77c30ad)

Updates `topology` from `0aaece6` to `77c30ad`
- [Commits](serpent-os/blsforme@0aaece6...77c30ad)

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

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

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

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

Updates `gpt` from 3.1.0 to 4.0.0
- [Release notes](https://github.com/Quyzi/gpt/releases)
- [Changelog](https://github.com/Quyzi/gpt/blob/master/CHANGELOG.md)
- [Commits](Quyzi/gpt@v3.1.0...v4.0.0)

Updates `tui-textarea` from 0.5.0 to 0.5.3
- [Release notes](https://github.com/rhysd/tui-textarea/releases)
- [Changelog](https://github.com/rhysd/tui-textarea/blob/main/CHANGELOG.md)
- [Commits](rhysd/tui-textarea@v0.5.0...v0.5.3)

---
updated-dependencies:
- dependency-name: futures
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: superblock
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: topology
  dependency-type: direct:production
  dependency-group: cargo
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: tokio-util
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tokio-stream
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: gpt
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo
- dependency-name: tui-textarea
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 8, 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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants