From 4de5053148aa5f6e35c465bb958cce12e04b71b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Jul 2025 11:43:57 +0000 Subject: [PATCH] cargo(deps): bump the minor-updates group across 1 directory with 7 updates Updates the requirements on [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), [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 `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 `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: 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: 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 | 10 +++++----- crates/mcp-cli/Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 48bd4db..551c522 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ 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,9 +43,9 @@ hyper-tungstenite = "0.13" # CLI and TUI clap = { version = "4.4", features = ["derive", "env"] } -ratatui = "0.28" -crossterm = "0.28" -tui-textarea = "0.6" +ratatui = "0.29" +crossterm = "0.29" +tui-textarea = "0.7" dialoguer = { version = "0.11", 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.6", 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 }