From 6793cb76284edfc1a2dded1e04eae6555a6f2392 Mon Sep 17 00:00:00 2001 From: EdJoPaTo Date: Sun, 30 Jan 2022 14:39:01 +0100 Subject: [PATCH] build: update tui to v0.17 --- .github/workflows/rust.yml | 2 +- Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 98ee41f..b628258 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -39,7 +39,7 @@ jobs: # Sometimes old rust versions don't yet have the lints (allow unknown) or don't have fixes in lints (false positives -> don't error, just warn). # When a certain distro is a target look up its version: https://repology.org/project/rust/versions - os: ubuntu-latest - toolchain: 1.48.0 + toolchain: 1.56.1 clippyargs: -A unknown-lints features: --all-features steps: diff --git a/Cargo.toml b/Cargo.toml index 1f13af6..86c6126 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ repository = "https://github.com/EdJoPaTo/tui-rs-tree-widget" documentation = "https://docs.rs/tui-tree-widget" authors = ["EdJoPaTo "] edition = "2018" -rust-version = "1.48.0" +rust-version = "1.56.1" keywords = ["tui", "terminal", "tree", "widget"] include = ["src/**/*", "README.md"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -16,13 +16,13 @@ include = ["src/**/*", "README.md"] unicode-width = "0.1" [dependencies.tui] -version = "0.16" +version = "0.17" default-features = false [dev-dependencies] termion = "1" [dev-dependencies.tui] -version = "0.16" +version = "0.17" default-features = false features = ["termion"]