From f6a375fc4674935665031ebba06ad7551dec6b43 Mon Sep 17 00:00:00 2001 From: krolxon Date: Wed, 15 May 2024 15:05:08 +0530 Subject: [PATCH] Cargo.toml changes --- Cargo.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5a1ccd7..2d0b9d1 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,10 @@ [package] name = "rmptui" authors = ["krolyxon"] +description = """ +a fast and minimal tui mpd client +""" +readme = "README.md" version = "0.1.2" edition = "2021" repository = "https://github.com/krolyxon/rmptui" @@ -11,6 +15,8 @@ keywords = ["rmptui", "mpd", "music", "cli", "tui", "client"] [dependencies] mpd = "0.1.0" simple-dmenu = "0.1.0" -ratatui = "0.26.2" +ratatui = { version = "0.26.2", default-features = false, features = [ + 'crossterm', +] } crossterm = "0.27.0" rust-fuzzy-search = "0.1.1"