From 299b4bcc391af2e8dd630f84157370440f9d45d9 Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Thu, 7 Mar 2024 17:42:53 +0100 Subject: [PATCH] build: update clap dependency and add authors/description/repository --- Cargo.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 27514fb..b3fca21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,11 +2,12 @@ name = "bzkf-rwdp-check" version = "0.2.0" edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +authors = ["Paul-Christian Volkmer "] +description = "Anwendung zur Durchführung einer Plausibilitätsprüfung anhand der Daten für die BZKF Real World Data Platform." +repository = "https://github.com/CCC-MF/bzkf-rwdp-check" [dependencies] -clap = { version = "4.4", features = ["std", "help", "usage", "derive", "error-context"], default-features = false } +clap = { version = "4.5", features = ["std", "help", "usage", "derive", "error-context"], default-features = false } console = "0.15" csv = "1.3" dialoguer = "0.11"