mirror of
https://github.com/kdheepak/taskwarrior-tui.git
synced 2025-08-24 05:26:42 +02:00
fix: Update dependencies and remove FuturesOrdered 🐛
This commit is contained in:
parent
2857e198a4
commit
20bdbf08a2
7 changed files with 186 additions and 160 deletions
|
@ -1,10 +1,10 @@
|
|||
use clap::{App, Arg};
|
||||
use clap::Arg;
|
||||
|
||||
const APP_VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||
const APP_NAME: &str = env!("CARGO_PKG_NAME");
|
||||
|
||||
pub fn generate_cli_app() -> App<'static> {
|
||||
let mut app = App::new(APP_NAME)
|
||||
pub fn generate_cli_app() -> clap::Command<'static> {
|
||||
let mut app = clap::Command::new(APP_NAME)
|
||||
.version(APP_VERSION)
|
||||
.author("Dheepak Krishnamurthy <@kdheepak>")
|
||||
.about("A taskwarrior terminal user interface")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue