From 46c78b039a42ce03d54182c9751aea3e315f7d47 Mon Sep 17 00:00:00 2001 From: Martin Wurm Date: Thu, 20 Jul 2023 06:45:32 +0200 Subject: [PATCH] Complete Cargo.toml for now --- Cargo.toml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d9e7570..3471142 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,19 @@ [package] name = "weareone-xmltv" +description = "An XMLTV grabber for WeAreOne.FM internet radio stations." version = "0.1.0" +authors = ["Martin Wurm "] +readme = "README.md" +repository = "https://codeberg.org/mart-w/weareone-xmltv" +license = "LGPL-3.0" +keywords = ["xmltv", "grabber", "scraper", "weareone", "technobase"] +categories = ["command-line-utilities", "api-bindings"] + edition = "2021" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[[bin]] +name = "tv_grab_de_weareone" +path = "src/main.rs" [dependencies] -clap = { features = ["derive"] } +clap = {version = "4", features = ["derive"] }