From ff2286f44b9f7d0c9ca15d25d78d32609220763a Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Thu, 13 Nov 2025 16:36:54 -0600 Subject: [PATCH] Add metadata required for publishing to crates.io I'm not sure they're required. I sure hope not because I don't have a homepage, and the guide says not to reuse the repo URL there. --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index f8b3546..492202a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,11 @@ name = "gt-tool" version = "3.0.0" edition = "2024" +license = "GPL-3.0-only" +description = "CLI tools for interacting with the Gitea API. Mainly for attaching files to releases." +# homepage = "" I have no website for a project home page :( +repository = "https://git.gelvin.dev/robert/gt-tool" +readme = "README.md" [dependencies] clap = { version = "4.5.23", features = ["derive", "env"] }