Exclude tests and examples from packaging

This commit is contained in:
Chris Hennick 2024-04-09 11:04:48 -07:00
parent 58c2a8eb0f
commit 4eef0d297e
2 changed files with 8 additions and 1 deletions

View file

@ -250,4 +250,10 @@
### Changed
- Now uses boxed slices rather than `String` or `Vec` for metadata fields that aren't likely to grow.
- 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.

View file

@ -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 }