Exclude tests and examples from packaging
This commit is contained in:
parent
58c2a8eb0f
commit
4eef0d297e
2 changed files with 8 additions and 1 deletions
|
@ -250,4 +250,10 @@
|
||||||
|
|
||||||
### Changed
|
### 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.
|
|
@ -11,6 +11,7 @@ rust-version = "1.67.0"
|
||||||
Library to support the reading and writing of zip files.
|
Library to support the reading and writing of zip files.
|
||||||
"""
|
"""
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
exclude = ["tests/**", "benches/**", "examples/**", ".github/**"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aes = { version = "0.8.4", optional = true }
|
aes = { version = "0.8.4", optional = true }
|
||||||
|
|
Loading…
Add table
Reference in a new issue