From 72b8d0aa011900b40e717456a18ffc398d6f08ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Apr 2022 11:12:44 +0000 Subject: [PATCH] Update tui requirement from 0.15 to 0.18 Updates the requirements on [tui](https://github.com/fdehau/tui-rs) to permit the latest version. - [Release notes](https://github.com/fdehau/tui-rs/releases) - [Changelog](https://github.com/fdehau/tui-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/fdehau/tui-rs/compare/v0.15.0...v0.18.0) --- updated-dependencies: - dependency-name: tui dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- simag_terminal/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simag_terminal/Cargo.toml b/simag_terminal/Cargo.toml index 6f7c73a..5330935 100644 --- a/simag_terminal/Cargo.toml +++ b/simag_terminal/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" [dependencies] copypasta = "0.7" crossterm = "0.20" -tui = { version = "0.15", default-features = false, features = ['crossterm'] } +tui = { version = "0.18", default-features = false, features = ['crossterm'] } # internal simag_core = { path = "../simag_core" }