From e3a09aaab9ffe4f25f1d785d5bef147a466bfdf2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Aug 2025 18:07:22 +0000 Subject: [PATCH] cargo(deps): bump the minor-updates group across 1 directory with 9 updates Updates the requirements on [toml](https://github.com/toml-rs/toml), [reqwest](https://github.com/seanmonstar/reqwest), [ratatui](https://github.com/ratatui/ratatui), [crossterm](https://github.com/crossterm-rs/crossterm), [tui-textarea](https://github.com/rhysd/tui-textarea), [dialoguer](https://github.com/console-rs/dialoguer), [criterion](https://github.com/bheisler/criterion.rs), [tabled](https://github.com/zhiburt/tabled) and [indicatif](https://github.com/console-rs/indicatif) to permit the latest version. Updates `toml` to 0.8.23 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.0...toml-v0.8.23) Updates `reqwest` to 0.11.27 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.11.0...v0.11.27) Updates `ratatui` to 0.28.1 - [Release notes](https://github.com/ratatui/ratatui/releases) - [Changelog](https://github.com/ratatui/ratatui/blob/main/CHANGELOG.md) - [Commits](https://github.com/ratatui/ratatui/compare/v0.28.0...v0.28.1) Updates `crossterm` 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 `tui-textarea` to 0.6.1 - [Release notes](https://github.com/rhysd/tui-textarea/releases) - [Changelog](https://github.com/rhysd/tui-textarea/blob/main/CHANGELOG.md) - [Commits](https://github.com/rhysd/tui-textarea/compare/v0.6.0...v0.6.1) Updates `dialoguer` to 0.11.0 - [Changelog](https://github.com/console-rs/dialoguer/blob/main/CHANGELOG.md) - [Commits](https://github.com/console-rs/dialoguer/compare/v0.11.0...v0.11.0) Updates `criterion` to 0.5.1 - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/bheisler/criterion.rs/compare/0.5.0...0.5.1) Updates `tabled` to 0.20.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/commits) Updates `indicatif` to 0.18.0 - [Release notes](https://github.com/console-rs/indicatif/releases) - [Commits](https://github.com/console-rs/indicatif/compare/0.17.0...0.18.0) --- updated-dependencies: - dependency-name: toml dependency-version: 0.8.23 dependency-type: direct:production dependency-group: minor-updates - dependency-name: reqwest dependency-version: 0.11.27 dependency-type: direct:production dependency-group: minor-updates - dependency-name: ratatui dependency-version: 0.28.1 dependency-type: direct:production dependency-group: minor-updates - dependency-name: crossterm dependency-version: 0.28.1 dependency-type: direct:production dependency-group: minor-updates - dependency-name: tui-textarea dependency-version: 0.6.1 dependency-type: direct:production dependency-group: minor-updates - dependency-name: dialoguer dependency-version: 0.11.0 dependency-type: direct:production dependency-group: minor-updates - dependency-name: criterion dependency-version: 0.5.1 dependency-type: direct:production dependency-group: minor-updates - dependency-name: tabled dependency-version: 0.20.0 dependency-type: direct:production dependency-group: minor-updates - dependency-name: indicatif dependency-version: 0.18.0 dependency-type: direct:production dependency-group: minor-updates ... Signed-off-by: dependabot[bot] --- Cargo.toml | 14 +++++++------- crates/mcp-cli/Cargo.toml | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 48bd4db..8699dfb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,12 +29,12 @@ async-trait = "0.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_yaml = "0.9" -toml = "0.8" +toml = "0.9" humantime-serde = "1.1" html-escape = "0.2" # HTTP and networking -reqwest = { version = "0.11", default-features = false, features = ["json", "stream", "rustls-tls"] } +reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls"] } url = { version = "2.5", features = ["serde"] } eventsource-stream = "0.2" bytes = "1.5" @@ -43,10 +43,10 @@ hyper-tungstenite = "0.13" # CLI and TUI clap = { version = "4.4", features = ["derive", "env"] } -ratatui = "0.28" -crossterm = "0.28" -tui-textarea = "0.6" -dialoguer = { version = "0.11", features = ["completion"] } +ratatui = "0.29" +crossterm = "0.29" +tui-textarea = "0.7" +dialoguer = { version = "0.12", features = ["completion"] } # Flow states handled by internal state machine @@ -62,7 +62,7 @@ chrono = { version = "0.4", features = ["serde"] } dirs = "5.0" # Development and testing -criterion = { version = "0.5", features = ["html_reports"] } +criterion = { version = "0.7", features = ["html_reports"] } tempfile = "3.8" # New dependencies (removed external validation libs) diff --git a/crates/mcp-cli/Cargo.toml b/crates/mcp-cli/Cargo.toml index 3fea848..1eb3dbd 100644 --- a/crates/mcp-cli/Cargo.toml +++ b/crates/mcp-cli/Cargo.toml @@ -62,8 +62,8 @@ tempfile = "3.8" # jsonschema = "0.18" # Using simplified validation in mcp-core instead # Table and spinner display -tabled = "0.15" -indicatif = "0.17" +tabled = "0.20" +indicatif = "0.18" [dev-dependencies] criterion = { workspace = true }