From eedf5b8f3da2b476badf5f039e82c7bc82b524fc Mon Sep 17 00:00:00 2001 From: Julian Frimmel Date: Mon, 23 Sep 2024 19:04:33 +0200 Subject: [PATCH] Exclude some directories from published artifact Those are entirely intended for development and are not required for any user to be downloaded when installing the package. Therefore they can be excluded to save space and bandwidth. --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 1c10747..7d20d6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,6 +19,8 @@ categories = [ "development-tools::cargo-plugins", ] exclude = [ + ".github", + ".vscode", "CHANGELOG.md", "tests", ]