refactor(cli): port the cli to clap

This commit is contained in:
2024-10-28 15:50:41 +01:00
committed by Jonas Kattendick
parent fa8154fc21
commit 1cbf57387a
5 changed files with 358 additions and 0 deletions

25
Cargo.toml Normal file
View File

@@ -0,0 +1,25 @@
[package]
name = "agenda"
description = "Manage daily tasks and notes in any plain text format."
version.workspace = true
edition.workspace = true
authors.workspace = true
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = [
"Jonas Kattendick <kattendick@bde-software.com>",
]
[workspace]
members = [
# "agenda_completion",
# "agenda_manpage",
]
[dependencies]
clap = { workspace = true, features = ["derive", "env"] }
[workspace.dependencies]
clap = "4.5.20"