From 0a4ffbad2486a902ac251664e7ce1a64b286e39c Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Thu, 15 Aug 2024 08:33:46 -0400 Subject: [PATCH] Exclude benchmarks and other unnecessary files from published crates This makes the crate archives slightly smaller, and makes it very clear that nothing derived from sharded-slab is compiled into the crate library, which makes downstream license analysis easier. --- Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 5dc8d12..8466e56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,12 @@ repository = "https://github.com/ibraheemdev/boxcar" keywords = ["concurrent","vector","lock-free"] categories = ["concurrency", "data-structures"] +exclude = [ + ".gitignore", + ".github/**", + "benches/**", + "report.svg", +] [[bench]] name = "bench"