From f86c7749654e41ab566244bb8eba77f1563f5ddf Mon Sep 17 00:00:00 2001 From: "Brian J. Tarricone" Date: Tue, 19 Sep 2023 23:05:09 -0700 Subject: [PATCH] Fill in requires Cargo.toml package metadata --- Cargo.toml | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5181278..97813ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,26 @@ [package] name = "bebot" version = "0.1.0" +description = "Gitlab webhook bot that publishes events to Matrix" +license = "GPL-3.0" +authors = [ + "Brian J. Tarricone ", +] +homepage = "https://git.spurint.org/kelnos/bebot" +repository = "https://git.spurint.org/kelnos/bebot" edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +categories = [ + "development-tools", +] +keywords = [ + "gitlab", + "matrix", + "bot", + "webhook", +] +exclude = [ + ".gitea/*", +] [dependencies] anyhow = "1"