From e86f0b15e053b578b0409bbf16ff1ad6752aa990 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 16:03:42 +0000 Subject: [PATCH] build(deps): update crossterm requirement from 0.27 to 0.28 Updates the requirements on [crossterm](https://github.com/crossterm-rs/crossterm) to permit the latest version. - [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) --- updated-dependencies: - dependency-name: crossterm dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cee9acc..854cfe4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -69,6 +69,6 @@ rstest = "0.19" # We don't need any of the default features for crossterm. # However, the windows build needs the windows feature enabled. [target.'cfg(not(windows))'.dependencies] -crossterm = { version = "0.27", optional=true, default-features = false } +crossterm = { version = "0.28", optional=true, default-features = false } [target.'cfg(windows)'.dependencies] crossterm = { version = "0.27", optional=true, default-features = false, features=["windows"] }