From 4eef0d297e58d5653f99c70f701d424a78620ae4 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Tue, 9 Apr 2024 11:04:48 -0700 Subject: [PATCH] Exclude tests and examples from packaging --- CHANGELOG.md | 8 +++++++- Cargo.toml | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf9c6224..c246cbfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -250,4 +250,10 @@ ### Changed - - Now uses boxed slices rather than `String` or `Vec` for metadata fields that aren't likely to grow. \ No newline at end of file + - Now uses boxed slices rather than `String` or `Vec` for metadata fields that aren't likely to grow. + +## [1.0.1] + +### Changed + + - The package no longer includes tests or examples. \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 9aa907f4..b51c3ffd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,7 @@ rust-version = "1.67.0" Library to support the reading and writing of zip files. """ edition = "2021" +exclude = ["tests/**", "benches/**", "examples/**", ".github/**"] [dependencies] aes = { version = "0.8.4", optional = true }