From 0146dbbb848fdf42dc107b48ed0850964ccdad0c Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Thu, 18 Jun 2026 09:41:02 +0100 Subject: [PATCH] Exclude `release-plz.toml` from published crates It is small and harmless; still, its inclusion does not benefit crate users. --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a05a569..a612829 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,10 @@ edition = "2021" description = "A library for streaming reading of files over HTTP using range requests" license = "MIT" repository = "https://github.com/astral-sh/async_http_range_reader" -exclude = ["test-data/*"] +exclude = [ + "release-plz.toml", + "test-data/*", +] rust-version = "1.74" [lib]