From 4ef2eab3db7299819ee9e1a104bb683a9d42b679 Mon Sep 17 00:00:00 2001 From: Quantum Date: Tue, 15 Oct 2024 02:22:35 -0400 Subject: [PATCH] Ignore .github in published crate --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 6a92c78..183bcd4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,10 @@ license = "GPL-3" keywords = ["ntfy", "cron", "notifications", "utility"] categories = ["command-line-interface"] +exclude = [ + ".github/*" +] + [dependencies] clap = { version = "4.5.20", features = ["derive", "env"] } itertools = "0.13.0"