From a13bca83f2b08b173b2ce4917d4a1cb1aeeb5a3f Mon Sep 17 00:00:00 2001 From: Tushar Mathur Date: Thu, 28 Nov 2024 16:07:46 -0800 Subject: [PATCH] chore: add metadata fields to Cargo.toml for gh-workflow and gh-workflow-macros --- crates/gh-workflow-macros/Cargo.toml | 7 +++++++ crates/gh-workflow/Cargo.toml | 1 + 2 files changed, 8 insertions(+) diff --git a/crates/gh-workflow-macros/Cargo.toml b/crates/gh-workflow-macros/Cargo.toml index eb6867d..69a72a0 100644 --- a/crates/gh-workflow-macros/Cargo.toml +++ b/crates/gh-workflow-macros/Cargo.toml @@ -3,6 +3,13 @@ name = "gh-workflow-macros" version = "0.1.0" edition = "2021" +description = "macros for gh-workflow" +license = "Apache-2.0" +documentation = "https://docs.rs/gh-workflow" +homepage = "https://github.com/tailcallhq/gh-workflow" +repository = "https://github.com/tailcallhq/gh-workflow" +keywords = ["github", "actions", "workflow", "generator"] + [lib] proc-macro = true diff --git a/crates/gh-workflow/Cargo.toml b/crates/gh-workflow/Cargo.toml index a05c860..b063637 100644 --- a/crates/gh-workflow/Cargo.toml +++ b/crates/gh-workflow/Cargo.toml @@ -8,6 +8,7 @@ license = "Apache-2.0" documentation = "https://docs.rs/gh-workflow" homepage = "https://github.com/tailcallhq/gh-workflow" repository = "https://github.com/tailcallhq/gh-workflow" +keywords = ["github", "actions", "workflow", "generator"] [dependencies] async-trait = "0.1.83"