Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 6, 2025

Bumps the minor group with 15 updates in the / directory:

Package From To
crossterm 0.27.0 0.28.1
dialoguer 0.11.0 0.12.0
itertools 0.12.1 0.14.0
pulldown-cmark 0.9.6 0.13.0
ratatui 0.26.3 0.29.0
slog 2.7.0 2.8.0
tabled 0.18.0 0.20.0
tokio 1.44.2 1.47.1
tokio-tungstenite 0.24.0 0.28.0
toml 0.8.23 0.9.7
toml_edit 0.22.27 0.23.6
expectorate 1.1.0 1.2.0
test-context 0.1.6 0.4.1
built 0.7.7 0.8.0
openapiv3 2.0.0 2.2.0

Updates crossterm from 0.27.0 to 0.28.1

Release notes

Sourced from crossterm's releases.

0.28

Version 0.28

Added ⭐

  • Capture double click mouse events on windows (#826)
  • (De)serialize Reset color (#824)
  • Add functions to allow constructing Attributes in a const context (#817)
  • Implement Display for KeyCode and KeyModifiers (#862)

Changed ⚙️

  • Use Rustix by default instead of libc. Libc can be re-enabled if necessary with the libc feature flag (#892)
  • FileDesc now requires a lifetime annotation.
  • Improve available color detection (#885)
  • Speed up SetColors by ~15-25% (#879)
  • Remove unsafe and unnecessary size argument from FileDesc::read() (#821)

Breaking ⚠️

  • Fix duplicate bit masks for caps lock and num lock (#863). This breaks serialization of KeyEventState

@​rustco @​timstr @​illiteratewriter @​heaths @​joshka @​aschey @​joshka @​martinvonz @​linrongbin16 @​rtczza @​sjakk @​kierdavis @​Destroy666x @​stphnt @​5donuts @​kdheepak @​valerii15298 @​javaLux @​alt-art @​jumbledFox

Changelog

Sourced from crossterm's changelog.

Version 0.28.1

Fixed 🐛

  • Fix broken build on linux when using use-dev-tty with (#906)

Breaking ⚠️

  • Fix desync with mio and signalhook between repo and published crate. (upgrade to mio 1.0)

Version 0.28

Added ⭐

  • Capture double click mouse events on windows (#826)
  • (De)serialize Reset color (#824)
  • Add functions to allow constructing Attributes in a const context (#817)
  • Implement Display for KeyCode and KeyModifiers (#862)

Changed ⚙️

  • Use Rustix by default instead of libc. Libc can be re-enabled if necessary with the libc feature flag (#892)
  • FileDesc now requires a lifetime annotation.
  • Improve available color detection (#885)
  • Speed up SetColors by ~15-25% (#879)
  • Remove unsafe and unnecessary size argument from FileDesc::read() (#821)

Breaking ⚠️

  • Fix duplicate bit masks for caps lock and num lock (#863). This breaks serialization of KeyEventState

Version 0.27.1

Added ⭐

  • Add support for (de)serializing Reset Color

Version 0.27

Added ⭐

  • Add NO_COLOR support (https://no-color.org/)
  • Add option to force overwrite NO_COLOR (#802)
  • Add support for scroll left/right events on windows and unix systems (#788).
  • Add window_size function to fetch pixel width/height of screen for more sophisticated rendering in terminals.
  • Add support for deserializing hex color strings to Color e.g #fffff.

Changed ⚙️

  • Make the events module an optional feature events (to make crossterm more lightweight) (#776)

... (truncated)

Commits

Updates dialoguer from 0.11.0 to 0.12.0

Changelog

Sourced from dialoguer's changelog.

Changelog

Commits
  • 731c70b Audit dependencies
  • 2a88be1 Check for external types
  • d4271ea Check semver compatibility
  • 11c990d Check for documentation errors
  • 39d2480 Add Dependabot config
  • 31b2e25 Upgrade to actions/checkout v5
  • 8ebd9e5 Focus CI testing on stable Rust
  • d4a002d Use default targets on respective operating systems
  • 3e3cc03 Reduce number of targets tested in CI
  • fcb8a0d Enable basic caching in CI
  • Additional commits viewable in compare view

Updates itertools from 0.12.1 to 0.14.0

Changelog

Sourced from itertools's changelog.

0.14.0

Breaking

  • Increased MSRV to 1.63.0 (#960)
  • Removed generic parameter from cons_tuples (#988)

Added

  • Added array_combinations (#991)
  • Added k_smallest_relaxed and variants (#925)
  • Added next_array and collect_array (#560)
  • Implemented DoubleEndedIterator for FilterOk (#948)
  • Implemented DoubleEndedIterator for FilterMapOk (#950)

Changed

  • Allow Q: ?Sized in Itertools::contains (#971)
  • Improved hygiene of chain! (#943)
  • Improved into_group_map_by documentation (#1000)
  • Improved tree_reduce documentation (#955)
  • Improved discoverability of merge_join_by (#966)
  • Improved discoverability of take_while_inclusive (#972)
  • Improved documentation of find_or_last and find_or_first (#984)
  • Prevented exponentially large type sizes in tuple_combinations (#945)
  • Added track_caller attr for asser_equal (#976)

Notable Internal Changes

  • Fixed clippy lints (#956, #987, #1008)
  • Addressed warnings within doctests (#964)
  • CI: Run most tests with miri (#961)
  • CI: Speed up "cargo-semver-checks" action (#938)
  • Changed an instance of default_features in Cargo.toml to default-features (#985)

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)

... (truncated)

Commits
  • a015a68 Add next_array and collect_array
  • a1213e1 Prepare v0.14.0 release
  • ff0c942 fix clippy lints
  • f80883b Fix into_group_map_by documentation errors
  • b793238 Add track_caller for asser_equal
  • 5d4056b default_features is deprecated - switch it to default-features
  • a447b68 doc for added trait
  • d0479b0 "nitpicks"
  • 35c78ce IndexMut -> BorrowMut<slice>
  • deb53ba refactored to share code
  • Additional commits viewable in compare view

Updates pulldown-cmark from 0.9.6 to 0.13.0

Release notes

Sourced from pulldown-cmark's releases.

v0.13.0

Breaking Changes

New Features

Bug Fixes and Code Enhancements

Docs

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.12.2...v0.13.0

0.12.2

What's Changed

... (truncated)

Commits
  • f17d98a chore: bump version to 0.13.0
  • 47f60de chore: cargo update and bump version to 0.12.3
  • e42259f Merge pull request #1018 from notriddle/deflist-lazy
  • 052c635 Merge pull request #1017 from notriddle/master
  • 0ede612 Prevent definition list defs from interrupting non-paragraphs
  • 2c16b4e Fix tasklist parsing bugs
  • c59ff54 Merge pull request #1015 from notriddle/tight-paragraph
  • 4409722 Use an explicit node for tight paragraphs
  • 4564d43 Merge pull request #1010 from ModProg/document-events
  • 62cae02 fix metadatablock doc comment
  • Additional commits viewable in compare view

Updates ratatui from 0.26.3 to 0.29.0

Changelog

Sourced from ratatui's changelog.

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<Cow> 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

... (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 slog from 2.7.0 to 2.8.0

Release notes

Sourced from slog's releases.

Enable nested-values feature by default

This is the biggest slog release since v2.0! It contains many smaller fixes and improvements to slog that have been accumulated across 5 years and 127 commits.

The nested-values feature was already present in slog, and allows logging serde::Serialize types in addition to primitives. Previously, the nested-values feature had to be enabled not just in slog but also in each drain crate (slog_json, slog_term, slog_async, etc). Enabling this feature by default makes the crate easier to use and avoids several papercts. It should have no runtime overhead if not used and low compile-time overhead thanks to the new serde_core crate.

Another major feature is Logger::flush, which explicitly flushes buffered log messages. The next major release of slog_json, slog_async, etc., will also include support for this feature, in addition to enabling nested-values by default.

Changelog

The following has been copied from CHANGELOG.md

Highlights

  • Enables the nested-values feature by default. The next major release of slog_json, slog_term, etc should also enable this feature by default.
  • Added Logger::flush and Drain::flush methods.
  • Improved support for logging errors
    • Have # log specifier transparently support & references to error
    • Implement slog::Value for Box<dyn std::error::Error> and anyhow::Error
  • Define a prelude module for common imports
  • Upgraded to Rust 2018 and require Rust 1.61
    • Deprecate the old slog_log! macros in favor of slog::log!
  • Many internal improvements & bug fixes

Changed

  • Enables the nested-values feature by default.
  • Updated to Rust 2018
  • Bump MSRV to 1.61
    • This is already required for erased-serde, syn, serde_core, and many other important crates in the rust ecosystem.
  • Update erased-serde from v0.3 to v0.4
  • Depend on [serde_core] rather than serde to reduce compile times.

Added

  • Added a Logger::flush and Drain::flush methods
    • Since this is a new method, not all drains implement it. Calling it on an unsupported drain will give an error
  • Define a prelude module for common imports. Replace use slog::{Serde, Logger, info, debug, trace} with use slog::prelude::*
  • Optionally implement Drain for [parking_lot::Mutex]. This is noticeably faster than std::sync::Mutex, is smaller, and avoids poisoning.
    • This feature has a separate name per version to allow supporting multiple versions of parking_lot at once. The current version (v0.12) has feature name parking_lot_0_12
  • Implement slog::Value for dyn std::error::Error and Box<dyn std::error:Error (along with the Send/Sync versions).
  • Optionally implement slog::Value for [anyhow::Error] (requires anyhow feature)
  • Add ErrorRef wrapper to enable logging error references (PR #327)
    • The # error formatter in macros was updated to automatically select ErrorValue or ErrorRef (PR #328)
  • Add emit_bytes method (PR #290)
    • Control formatting using BytesKind enum
  • Implement Value for std::borrow::Cow

Deprecated

  • Deprecate old prefixed macros like slog_log.

... (truncated)

Changelog

Sourced from slog's changelog.

[2.8.0] - 2025-10-05

This is the biggest slog release since 2.0. It fully preserves compatibility with prior releases.

Highlights

  • Enables the nested-values feature by default. The next major release of slog_json, slog_term, etc should also enable this feature by default.
  • Added Logger::flush and Drain::flush methods.
  • Improved support for logging errors
    • Have # log specifier transparently support & references to error
    • Implement slog::Value for Box<dyn std::error::Error> and anyhow::Error
  • Define a prelude module for common imports
  • Upgraded to Rust 2018 and require Rust 1.61
    • Deprecate the old slog_log! macros in favor of slog::log!
  • Many internal improvements & bug fixes

Changed

  • Enables the nested-values feature by default.
  • Updated to Rust 2018
  • Bump MSRV to 1.61
    • This is already required for erased-serde, syn, serde_core, and many other important crates in the rust ecosystem.
  • Update erased-serde from v0.3 to v0.4
  • Depend on [serde_core] rather than serde to reduce compile times.

Added

  • Added a Logger::flush and Drain::flush methods
    • Since this is a new method, not all drains implement it. Calling it on an unsupported drain will give an error
  • Define a prelude module for common imports. Replace use slog::{Serde, Logger, info, debug, trace} with use slog::prelude::*
  • Optionally implement Drain for [parking_lot::Mutex]. This is noticeably faster than std::sync::Mutex, is smaller, and avoids poisoning.
    • This feature has a separate name per version to allow supporting multiple versions of parking_lot at once. The current version (v0.12) has feature name parking_lot_0_12
  • Implement slog::Value for dyn std::error::Error and Box<dyn std::error:Error (along with the Send/Sync versions).
  • Optionally implement slog::Value for [anyhow::Error] (requires anyhow feature)
  • Add ErrorRef wrapper to enable logging error references (PR #327)
    • The # error formatter in macros was updated to automatically select ErrorValue or ErrorRef (PR #328)
  • Add emit_bytes method (PR #290)
    • Control formatting using BytesKind enum
  • Implement Value for std::borrow::Cow

Deprecated

  • Deprecate old prefixed macros like slog_log. Rust 2018 macro paths like slog::log! make these unnecessary.

Fixed

  • Fix logging of references to errors (resolved by introduction of ErrorRef in PR #327)
  • Take advantage of the fact that in 1.81 [std::error::Error] has been moved to core. On this rust version, slog now supports the error trait without requiring std.
  • Add #[must_use] to most public types, including slog::Logger, slog::OwnedKV, and slog::FnValue.

... (truncated)

Commits
  • ec46dcc Bump version to v2.8.0
  • a447574 Use serde_core instead of serde
  • 60add84 ci: Run rustdoc in CI, forbidding warnings
  • 640c150 Fix outstanding rustdoc warnings
  • c52367f ci: Add anyhow to test feature matrix
  • a59a459 More detailed docs for Drain::flush
  • 1d2d9fe Make Duplicate::flush more robust on failure
  • 559df85 Add FlushError::Custom wrapping a Box<dyn Error>
  • fb98190 Define a Drain::flush method
  • 79b5770 ci: Use Swatinem/rust-cache action
  • Additional commits viewable in compare view

Updates tabled from 0.18.0 to 0.20.0

Changelog

Sourced from tabled's changelog.

[0.20.0] - 2025-05-06

Added

  • Added Table::nohead function just like Table::new but with no header.
  • Added Table::with_capacity function just like Table::new but with an exact number of rows.

Changed

  • Changed with(Border) logic to set only outer border instead of border of all cells.
  • Made a number of refactorings of tabled::grid::dimension::* modules.
  • Made small optimization of Wrap::text and Truncate::text.
  • Made small optimization of Text::new.
  • Brought up to date benchmarks.
  • Renamed Columns::single into Columns::one.
  • Renamed Rows::single into Rows::one.
  • Moved back to fnv from ahash cause of WASM build.
  • Moved back to old Wrap::keep_words logic where we preserving all content.

Fixed

  • Fixed dependency testing_table inclusion (by @​klensy).
  • Fixed WASM build (by @​cptpiepmatz).
  • Fixed not properly working caching logic of TableOption::hint.

[0.19.0] - 2025-24-04

Added

  • Added tabled::assert module.
  • Added #[tabled(map)] macro.
  • Added derive::display::bool function.
  • Added derive::display::wrap and derive::display::truncate function.
  • Added Locator::value.
  • Added Table::get_dimension function.
  • Added ANSI link handling in Width::truncate.
  • Added Upper Title Case and lower title case options for rename_all.
  • Added no_std in testing_table.

Changed

  • Changed Reverse interface.
  • Changed Position interface.
  • Changed tabled::grid::dimension structures.
  • Changed IterTable interface.
  • Migrated ron to 0.10.
  • Renamed ColumnNames::default() into ColumnsNames::head().
  • Renamed BorderSpanCorrection into BorderCorrection::span().
  • Renamed Offset::Begin into Offset::Start.

... (truncated)

Commits

Updates tokio from 1.44.2 to 1.47.1

Release notes

Sourced from tokio's releases.

Tokio v1.47.1

1.47.1 (August 1st, 2025)

Fixed

  • process: fix panic from spurious pidfd wakeup (#7494)
  • sync: fix broken link of Python asyncio.Event in SetOnce docs (#7485)

#7485: tokio-rs/tokio#7485 #7494: tokio-rs/tokio#7494

Tokio v1.47.0

1.47.0 (July 25th, 2025)

This release adds poll_proceed and cooperative to the coop module for cooperative scheduling, adds SetOnce to the sync module which provides similar functionality to [std::sync::OnceLock], and adds a new method sync::Notify::notified_owned() which returns an OwnedNotified without a lifetime parameter.

Added

  • coop: add cooperative and poll_proceed (#7405)
  • sync: add SetOnce (#7418)
  • sync: add sync::Notify::notified_owned() (#7465)

Changed

  • deps: upgrade windows-sys 0.52 → 0.59 (#7117)
  • deps: update to socket2 v0.6 (#7443)
  • sync: improve AtomicWaker::wake performance (#7450)

Documented

  • metrics: fix listed feature requirements for some metrics (#7449)
  • runtime: improve safety comments of Readiness<'_> (#7415)

#7405: tokio-rs/tokio#7405 #7415: tokio-rs/tokio#7415 #7418: tokio-rs/tokio#7418 #7449: tokio-rs/tokio#7449 #7450: tokio-rs/tokio#7450 #7465: tokio-rs/tokio#7465

Tokio v1.46.1

1.46.1 (July 4th, 2025)

This release fixes incorrect spawn locations in runtime task hooks for tasks spawned using tokio::spawn rather than Runtime::spawn. This issue only effected the spawn location in TaskMeta::spawned_at, and did not effect task locations in Tracing events.

... (truncated)

Commits

Updates tokio-tungstenite from 0.24.0 to 0.28.0

Changelog

Sourced from tokio-tungstenite's changelog.

0.28.0

0.27.0

0.26.2

0.26.1

  • Update tungstenite to address an issue that might cause UB in certain cases.

0.26.0

0.25.0

Commits
  • 35d110c Implement into_inner to get the underlying stream (#367)
  • f3ae75d Update tungstenite version and fix bugs
  • 25b544e Allow getting a reference to the shared inner stream (#363)
  • e855f9e Fix errors in the examples caused by Utf8Error
  • 21c5d19 Bump version
  • fbd1471 Update performance notes in README
  • a8d9f19 Bump version
  • aafb2f9 Bump version
  • 0eefa27 Bump version
  • 2d23077 Update to new tungstenite and bump version
  • Additional commits viewable in compare view

Updates toml from 0.8.23 to 0.9.7

Commits

Updates toml_edit from 0.22.27 to 0.23.6

Commits

Updates expectorate from 1.1.0 to 1.2.0

Commits

Updates test-context from 0.1.6 to 0.4.1

Release notes

Sourced from test-context's releases.

v0.4.0

What's Changed

New Contributors

Full Changelog: JasterV/test-context@v0.3.0...v0.4.0

v0.3.0

What's Changed

Full Changelog: JasterV/test-context@v0.2.0...v0.3.0

v0.2.0

What's Changed

Full Changelog: https://github.com/JasterV/test-context/compa...

Description has been truncated

Bumps the minor group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [crossterm](https://github.com/crossterm-rs/crossterm) | `0.27.0` | `0.28.1` |
| [dialoguer](https://github.com/console-rs/dialoguer) | `0.11.0` | `0.12.0` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.12.1` | `0.14.0` |
| [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) | `0.9.6` | `0.13.0` |
| [ratatui](https://github.com/ratatui/ratatui) | `0.26.3` | `0.29.0` |
| [slog](https://github.com/slog-rs/slog) | `2.7.0` | `2.8.0` |
| [tabled](https://github.com/zhiburt/tabled) | `0.18.0` | `0.20.0` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.44.2` | `1.47.1` |
| [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite) | `0.24.0` | `0.28.0` |
| [toml](https://github.com/toml-rs/toml) | `0.8.23` | `0.9.7` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.22.27` | `0.23.6` |
| [expectorate](https://github.com/oxidecomputer/expectorate) | `1.1.0` | `1.2.0` |
| [test-context](https://github.com/JasterV/test-context) | `0.1.6` | `0.4.1` |
| [built](https://github.com/lukaslueg/built) | `0.7.7` | `0.8.0` |
| [openapiv3](https://github.com/glademiller/openapiv3) | `2.0.0` | `2.2.0` |



Updates `crossterm` from 0.27.0 to 0.28.1
- [Release notes](https://github.com/crossterm-rs/crossterm/releases)
- [Changelog](https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md)
- [Commits](https://github.com/crossterm-rs/crossterm/commits)

Updates `dialoguer` from 0.11.0 to 0.12.0
- [Changelog](https://github.com/console-rs/dialoguer/blob/main/CHANGELOG.md)
- [Commits](console-rs/dialoguer@v0.11.0...v0.12.0)

Updates `itertools` from 0.12.1 to 0.14.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.12.1...v0.14.0)

Updates `pulldown-cmark` from 0.9.6 to 0.13.0
- [Release notes](https://github.com/raphlinus/pulldown-cmark/releases)
- [Commits](pulldown-cmark/pulldown-cmark@v0.9.6...v0.13.0)

Updates `ratatui` from 0.26.3 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.26.3...v0.29.0)

Updates `slog` from 2.7.0 to 2.8.0
- [Release notes](https://github.com/slog-rs/slog/releases)
- [Changelog](https://github.com/slog-rs/slog/blob/master/CHANGELOG.md)
- [Commits](slog-rs/slog@v2.7.0...v2.8.0)

Updates `tabled` from 0.18.0 to 0.20.0
- [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zhiburt/tabled/commits)

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

Updates `tokio-tungstenite` from 0.24.0 to 0.28.0
- [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md)
- [Commits](snapview/tokio-tungstenite@v0.24.0...v0.28.0)

Updates `toml` from 0.8.23 to 0.9.7
- [Commits](toml-rs/toml@toml-v0.8.23...toml-v0.9.7)

Updates `toml_edit` from 0.22.27 to 0.23.6
- [Commits](toml-rs/toml@v0.22.27...v0.23.6)

Updates `expectorate` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/oxidecomputer/expectorate/releases)
- [Commits](oxidecomputer/expectorate@v1.1.0...v1.2.0)

Updates `test-context` from 0.1.6 to 0.4.1
- [Release notes](https://github.com/JasterV/test-context/releases)
- [Commits](https://github.com/JasterV/test-context/commits)

Updates `built` from 0.7.7 to 0.8.0
- [Changelog](https://github.com/lukaslueg/built/blob/master/CHANGELOG.md)
- [Commits](lukaslueg/built@0.7.7...0.8.0)

Updates `openapiv3` from 2.0.0 to 2.2.0
- [Changelog](https://github.com/glademiller/openapiv3/blob/master/CHANGELOG.md)
- [Commits](glademiller/openapiv3@v2.0.0...v2.2.0)

---
updated-dependencies:
- dependency-name: crossterm
  dependency-version: 0.28.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: dialoguer
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: itertools
  dependency-version: 0.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: pulldown-cmark
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: ratatui
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: slog
  dependency-version: 2.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: tabled
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: tokio
  dependency-version: 1.47.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: tokio-tungstenite
  dependency-version: 0.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: toml
  dependency-version: 0.9.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: toml_edit
  dependency-version: 0.23.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: expectorate
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: test-context
  dependency-version: 0.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: built
  dependency-version: 0.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: openapiv3
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
...

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 Oct 6, 2025
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 6, 2025
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