From cabe76439be5e270e7ac6375e2c9a15315453b13 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Fri, 16 Feb 2024 15:02:17 -0500 Subject: [PATCH] Exclude Dockerfile, index.html, and scripts/ from crates --- Cargo.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9dda4247..6cdc4315 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,12 @@ categories = ["command-line-utilities", "compression"] description = "A lossless PNG compression optimizer" documentation = "https://docs.rs/oxipng" edition = "2021" -exclude = ["tests/*"] +exclude = [ + "Dockerfile", + "index.html", + "scripts/*", + "tests/*", +] homepage = "https://github.com/shssoichiro/oxipng" license = "MIT" name = "oxipng"